/* Vision Page Styles */

/* Hero Section - Now using unified page-header styles */
/* Legacy styles removed - see page-header.css for unified styles */

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: #f8fafb;
}

.vision-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.vision-content {
    flex: 1;
}

.vision-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1e3a5f;
}

.vision-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.vision-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Approach Section */
.approach-section {
    /* background: #f8f9fa; */
    padding: 100px 0px;
    text-align: center;
}

.approach-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a5f;
}


h3.category-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.approach-intro {
    color: #666;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.values-grid {
    margin: 0 auto;
    max-width: 60%;
}

.value-card {
    background: #f8fafb;
    padding: 40px 30px;
    border-radius: 12px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
    gap: 15px;
    align-items: center;
    
}

.value-card:last-child{
    margin-bottom: 0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #1e3a5f;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin: 100px 40px;
    border-radius: 20px;
    margin-top: 0; */
}

.cta-section {
    text-align: center;
    margin: 100px 40px;
    margin-top: 0;
    background: #f8fafb;
    padding: 40px 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    display: flex;
    justify-content: start;
    gap: 15px;
    align-items: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.cta-section p {
    font-size: 16px;
    color: #222;
    font-weight: 700;
    max-width: 80%;
    margin: 0 auto;
}

.cta-btn {
    display: inline-block;
    background: #c9a961;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 20px rgba(253, 185, 19, 0.3); */
    color: #ffffff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    /* Legacy vision-hero styles removed - responsive styles now in page-header.css */

    .vision-section {
        padding: 60px 15px;
    }

    .vision-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .vision-content h2 {
        font-size: 28px;
    }

    .approach-section {
        padding: 50px 15px;
    }

    .approach-section h2 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-section {
        margin: 0px 15px;
        margin-bottom: 50px;
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* Legacy section.vision-hero styles removed - now using page-header--vision */

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