/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Banner styles */
.banner {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Section styles */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3C72;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text {
    color: #4b5563;
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: center; /* Changed from justify to center */
    padding: 0 15px;
    line-height: 1.8;
}

/* Statistics Section Styles */
.stats-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.stats-container {
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stats-layout {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.middle-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.middle-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1E3C72;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.4;
}

.vertical-divider {
    width: 1px;
    background-color: #ddd;
    align-self: stretch;
}

.horizontal-divider {
    height: 2px;
    background-color: #ccc;
    width: 100%;
    margin: 20px 0;
}

/* Responsive fixes for main.css */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-text {
        font-size: 0.95rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .section-text {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}