﻿/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    padding: 20px 20px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.95;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.terms-container {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.last-updated {
    background: #f6f8fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #586069;
    border-left: 4px solid #0366d6;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #24292e;
    margin-bottom: 32px;
    text-align: justify;
}

.terms-section {
    margin-bottom: 32px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #003580;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e1e4e8;
}

.section-content {
    font-size: 15px;
    line-height: 1.8;
    color: #24292e;
    margin-bottom: 16px;
}

.subsection {
    margin: 16px 0;
}

.subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: #24292e;
    margin-bottom: 8px;
}

.terms-list {
    list-style: none;
    padding-left: 24px;
    margin: 12px 0;
}

    .terms-list li {
        position: relative;
        padding: 8px 0 8px 20px;
        line-height: 1.7;
    }

        .terms-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #0366d6;
            font-weight: bold;
            font-size: 20px;
        }

.highlight-box {
    background: #f1f8ff;
    border-left: 4px solid #0366d6;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

    .highlight-box strong {
        color: #003580;
    }

.contact-info {
    background: linear-gradient(135deg, #0366d6 0%, #003580 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-info p {
        font-size: 14px;
        margin: 8px 0;
        opacity: 0.95;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .terms-container {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-content,
    .intro-text {
        font-size: 14px;
        text-align: left;
    }

    .subsection-title {
        font-size: 15px;
    }

    .terms-list {
        padding-left: 16px;
    }

        .terms-list li {
            font-size: 14px;
        }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .terms-container {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 18px;
    }

    .last-updated {
        font-size: 13px;
    }
}
