/* PRIVACY POLICY PAGE STYLES */

.privacy-policy-wrapper {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}

.policy-intro {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.policy-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

.policy-date {
    background: var(--light-gray);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin-bottom: 25px !important;
}

.policy-date strong {
    color: var(--primary);
}

.policy-content {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 50px;
}

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

.policy-section h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    font-weight: 600;
}

.policy-section h3 {
    font-size: 18px;
    color: #333;
    margin: 25px 0 15px;
    font-weight: 600;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-list {
    margin-top: 20px;
}

.policy-item {
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.policy-item:hover {
    background: #f0f2f5;
    border-left-color: var(--primary-light);
}

.policy-item strong {
    color: var(--primary);
    font-weight: 600;
}

.policy-item ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.policy-item ul li {
    margin-bottom: 8px;
    list-style: disc;
    color: #666;
}

.policy-item ul li:last-child {
    margin-bottom: 0;
}

.policy-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.policy-contact h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-contact > p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
    font-size: 24px;
    color: white;
    opacity: 0.9;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-policy-wrapper {
        margin-top: -80px;
        padding: 0 15px 60px;
    }

    .policy-intro {
        padding: 25px 20px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .policy-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .policy-section h3 {
        font-size: 16px;
    }

    .policy-section p,
    .policy-item {
        font-size: 14px;
    }

    .policy-contact {
        padding: 25px 20px;
    }

    .policy-contact h2 {
        font-size: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}