
/* Section Styles */
.section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--gray-color);
}

.section-white {
    background-color: var(--white-color);
}

.section-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.flex-container {
    display: flex;
    align-items: center;
}

.flex-container.reverse {
    flex-direction: row-reverse;
}

.image-container, .text-container {
    flex: 1;
}

.section-image {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.section-image:hover {
    transform: scale(1.02);
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Vision Section */
.vision-points {
    margin-top: 20px;
}

.vision-points li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.vision-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Mission Section */
.mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 0 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
    }
    
    .flex-container.reverse {
        flex-direction: column;
    }
    
    .image-container, .text-container {
        width: 100%;
    }
    
    .mission-stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav ul li {
        margin: 10px 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}