﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f3f6fb;
    color: #1f2937;
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 40px 0 60px;
    min-height: calc(100vh - 200px);
}

.legal-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 15px;
}

.last-update {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.intro-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.section-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.section-content {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

    .info-list li {
        padding: 10px 0 10px 30px;
        position: relative;
        color: #475569;
    }

        .info-list li:before {
            content: "•";
            position: absolute;
            left: 10px;
            color: #2563eb;
            font-size: 1.5rem;
            line-height: 1;
        }

.highlight-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #2563eb;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

    .highlight-box p {
        margin: 8px 0;
        color: #1e3a8a;
        font-weight: 500;
    }

    .highlight-box strong {
        color: #1e40af;
    }

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

    .warning-box p {
        margin: 8px 0;
        color: #92400e;
        font-weight: 500;
    }

.contact-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

    .contact-info p {
        font-size: 1.1rem;
        color: #166534;
        margin: 10px 0;
    }

    .contact-info a {
        color: #059669;
        text-decoration: none;
        font-weight: 600;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

    .footer-link:hover {
        color: white;
        transform: translateX(5px);
    }

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-number {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

