﻿
/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    padding: 20px 20px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section {
    background: white;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #003580;
    margin-bottom: 24px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #24292e;
    margin-bottom: 24px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.feature-card {
    background: #f6f8fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #0366d6;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(3, 102, 214, 0.15);
    }

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #586069;
}

.highlight-box {
    background: linear-gradient(135deg, #0366d6 0%, #003580 100%);
    color: white;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    text-align: center;
}

    .highlight-box h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .highlight-box p {
        font-size: 16px;
        opacity: 0.95;
    }

.list-section {
    margin: 24px 0;
}

    .list-section ul {
        list-style: none;
        padding: 0;
    }

    .list-section li {
        padding: 12px 0 12px 32px;
        position: relative;
        font-size: 16px;
        line-height: 1.6;
        color: #24292e;
    }

        .list-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0366d6;
            font-weight: bold;
            font-size: 20px;
        }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: #f6f8fa;
    border-radius: 12px;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 8px;
}

.value-description {
    font-size: 14px;
    color: #586069;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .content-section {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-text {
        font-size: 15px;
        text-align: left;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 24px 20px;
    }

        .highlight-box h3 {
            font-size: 20px;
        }

        .highlight-box p {
            font-size: 14px;
        }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .content-section {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .feature-card,
    .value-card {
        padding: 20px;
    }
}
