/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #010080;
    --primary-yellow: #c0a533;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* About Hero Section */
.about-hero {
    background-color: var(--bg-light);
    padding: 80px 0 40px 0;
}

.section-title-wrapper {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.values-section .section-title-wrapper {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: block;
    padding: 0 20px;
    width: fit-content;
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    align-self: center;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-underline::before {
    left: -20px;
}

.title-underline::after {
    right: -20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background-color: var(--white);
    padding: 60px 0;
}

.section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.story-image,
.story-image {
    padding: 20px;
    display: block;
}

.story-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Values Section */
.values-section {
    background-color: var(--bg-light) !important;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.values-section .row {
    margin-top: 2rem;
}

.value-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary-yellow);
    transform: scale(1.1);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mission Section */
.mission-section {
    background-color: var(--white);
    padding: 60px 0;
}

.mission-section .row {
    align-items: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-list li i {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-list li span {
    flex: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.feature-box {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background-color: var(--primary-yellow);
    transform: rotate(5deg) scale(1.1);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}

.cta-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: left;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary-cta,
.btn-secondary-cta {
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary-cta {
    background-color: var(--primary-yellow);
    color: var(--white);
    border: none;
}

.btn-primary-cta:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary-cta {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-cta:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
    
    .title-underline {
        width: 60px;
        height: 3px;
    }
    
    .title-underline::before,
    .title-underline::after {
        width: 6px;
        height: 6px;
    }
    
    .title-underline::before {
        left: -15px;
    }
    
    .title-underline::after {
        right: -15px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .story-text,
    .mission-text {
        font-size: 1rem;
    }
    
    .story-image,
    .mission-image {
        padding: 10px;
        margin-top: 30px;
    }
    
    .value-card,
    .feature-box {
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
