@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* ==================== FOUNDER MESSAGE SECTION ==================== */
.founder-message-section {
    padding: 60px 0;
    background: #FFF4EA;
}

.founder-message-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Founder Image - Top Center */
.founder-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.founder-image-frame {
    display: inline-block;
    position: relative;
    padding: 6px;
    background: linear-gradient(135deg, #034B9F 0%, #0563B8 100%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(3, 75, 159, 0.25);
}

.founder-image-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #B84110 0%, #EDB600 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
}

.founder-img {
    display: block;
    width: 240px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Message Content */
.founder-message-content {
    text-align: justify;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 40px;
}

.founder-message-content p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}

.founder-message-content p:first-child {
    margin-top: 0;
}

.founder-message-content p:last-child {
    margin-bottom: 0;
}

/* Founder Details - Bottom Right */
.founder-info-section {
    display: flex;
    justify-content: flex-end;
    padding-top: 30px;
    border-top: 2px solid #F0F0F0;
}

.founder-details {
    text-align: right;
}

.founder-name {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #034B9F;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.founder-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #B84110;
    margin: 0;
    line-height: 1.3;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 991.98px) {
    .founder-message-section {
        padding: 50px 0;
    }
    
    .founder-message-container {
        padding: 40px;
    }
    
    .founder-img {
        width: 220px;
        height: 280px;
    }
    
    .founder-message-content p {
        font-size: 17px;
    }
    
    .founder-name {
        font-size: 24px;
    }
    
    .founder-title {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .founder-message-section {
        padding: 40px 0;
    }
    
    .founder-message-container {
        padding: 35px 30px;
    }
    
    .founder-image-wrapper {
        margin-bottom: 35px;
    }
    
    .founder-img {
        width: 200px;
        height: 260px;
    }
    
    .founder-message-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .founder-name {
        font-size: 22px;
    }
    
    .founder-title {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .founder-message-section {
        padding: 30px 0;
    }
    
    .founder-message-container {
        padding: 25px 20px;
    }
    
    .founder-image-wrapper {
        margin-bottom: 30px;
    }
    
    .founder-img {
        width: 180px;
        height: 240px;
    }
    
    .founder-message-content {
        text-align: left;
        margin-bottom: 35px;
    }
    
    .founder-message-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .founder-info-section {
        justify-content: center;
        padding-top: 25px;
    }
    
    .founder-details {
        text-align: center;
    }
    
    .founder-name {
        font-size: 20px;
    }
    
    .founder-title {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .founder-message-container {
        padding: 20px 15px;
    }
    
    .founder-img {
        width: 160px;
        height: 220px;
    }
    
    .founder-message-content p {
        font-size: 14px;
    }
    
    .founder-name {
        font-size: 18px;
    }
    
    .founder-title {
        font-size: 14px;
    }
}
/* Founder Details - Below Image */
.founder-info-below {
    justify-content: center;
    padding-top: 18px;
    border-top: none;
}

.founder-info-below .founder-details {
    text-align: center;
}
