/* 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;
    overflow: hidden;
    background-color: #f9fafb;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
    max-width: 100%;
}

/* Section styles */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text {
    color: #4b5563;
    max-width: 1100px;
    margin: 0 auto 2rem;
    text-align: justify;
    padding: 0 15px;
    line-height: 1.8;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: transparent;
    color: #FF6B00;
    border: 2px solid #FF6B00;
}

.btn-primary:hover {
    background-color: #FF6B00;
    color: #ffffff;
}

/* 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: #FF6B00;
    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;
}

/* Scroll lock for mobile menu */
body.scroll-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .section-text {
        text-align: left;
        padding: 0 20px;
    }

    .btn {
        min-height: 44px;
        padding: 0.85rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .banner {
        height: auto;
        max-height: none;
    }

    .banner img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }
}