.privacy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 1rem;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-top: 5rem;
}

.privacy-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.privacy-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.privacy-content {
    padding: 3rem 2rem;
}

.privacy-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.section-content {
    flex: 1;
}

.section-content h2 {
    font-size: 1.6rem;
    color: var(--light-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content strong {
    color: var(--blue);
    font-weight: 700;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--orange);
}

.contact-box svg {
    width: 30px;
    height: 30px;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-box a {
    font-size: 1.2rem;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--orange);
    text-decoration: underline;
}

.privacy-footer {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--dark-blue) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 85, 170, 0.3);
}

.back-home svg {
    width: 20px;
    height: 20px;
}

.back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 85, 170, 0.4);
}

@media screen and (max-width: 768px) {
    .privacy-page {
        padding: 1rem 0.5rem;
    }

    .privacy-header {
        padding: 2rem 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-subtitle {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-section {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .section-content h2 {
        font-size: 1.4rem;
    }

    .section-content p {
        font-size: 1rem;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .contact-box a {
        font-size: 1.05rem;
    }

    .privacy-footer {
        padding: 1.5rem 1rem;
    }

    .back-home {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .privacy-header h1 {
        font-size: 1.75rem;
    }

    .privacy-subtitle {
        font-size: 0.95rem;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
    }

    .section-content h2 {
        font-size: 1.25rem;
    }

    .section-content p {
        font-size: 0.95rem;
    }
}
.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.terms-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
}

.terms-list li::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 1.2rem;
}

