﻿.privacy-page {
    padding: 40px 20px;
    min-height: calc(100vh - 120px);
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    text-align: center;
    color: #1c2a3a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a9fe3;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
    line-height: 1.9;
    font-size: 1.1rem;
}

    .privacy-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, #4a9fe3, #1c2a3a);
        border-radius: 12px 12px 0 0;
    }

.privacy-intro {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5eaf0;
}

.app-subtitle {
    color: #1c2a3a;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #4a9fe3;
    font-size: 1rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    padding: 6px 16px;
    border-radius: 20px;
}

.intro-text {
    color: #444;
    text-align: justify;
    margin-top: 15px;
}

.policy-section {
    background: linear-gradient(to bottom right, #f8fafc, #ffffff);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    border-right: 4px solid #4a9fe3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .policy-section:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }

    .policy-section.highlighted {
        background: linear-gradient(to bottom right, #e8f5e9, #f0fff4);
        border-right: 4px solid #2e7d32;
    }

    .policy-section.contact-section {
        background: linear-gradient(to bottom right, #e3f2fd, #f0f7ff);
        border-right: 4px solid #4a9fe3;
    }

.section-title {
    font-size: 1.4rem;
    color: #1c2a3a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-title i {
        color: #4a9fe3;
    }

.policy-section.highlighted .section-title i {
    color: #2e7d32;
}


::deep .policy-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

    ::deep .policy-section ul li {
        position: relative;
        padding-right: 28px;
        padding-bottom: 8px;
        color: #555;
    }

        ::deep .policy-section ul li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 4px;
            color: #4a9fe3;
            font-size: 0.9rem;
        }

::deep .policy-section.highlighted ul li::before {
    color: #2e7d32;
}

::deep .policy-section p {
    color: #444;
    margin-bottom: 10px;
    text-align: justify;
}

.contact-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    color: #444;
    flex-wrap: wrap;
}

    .contact-item i {
        color: #4a9fe3;
        font-size: 1.2rem;
    }

    .contact-item span {
        font-weight: 600;
        color: #1c2a3a;
    }

    .contact-item a {
        color: #4a9fe3;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .contact-item a:hover {
            color: #1c2a3a;
            text-decoration: underline;
        }

@media (max-width: 992px) {
    .privacy-page {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 25px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .app-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 20px;
    }

    .page-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 8px;
    }

    .policy-section {
        padding: 18px;
    }

    .contact-item {
        font-size: 0.95rem;
    }
}

