/* Privacy Policy Page Styles */


.privacy-hero {
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('../Images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.privacy-section {
    padding: 60px 0 100px;
    background-color: var(--ma-white);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.back-to-home:hover {
    color: var(--ma-type-primary);
}

.privacy-header {
    margin-bottom: 50px;
}

.privacy-header h1 {
    margin-bottom: 10px;
}

.privacy-header .last-updated {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.privacy-card {
    background-color: #F9FAFB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #F3F4F6;
}

    .privacy-card h2 {
        margin-bottom: 20px;
        font-size: var(--ma-section-title);
    }

.privacy-card p {
    margin-bottom: 20px;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card h6 {
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .privacy-list li {
        font-size: var(--ma-body-text);
        color: var(--ma-grey130);
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        line-height: 1.6;
    }

.privacy-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--ma-type-primary);
    border-radius: 50%;
    display: inline-block;
    margin-top: 8px;
    flex-shrink: 0;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-info-list li {
        font-size: var(--ma-body-text);
        color: var(--ma-grey130);
        margin-bottom: 10px;
    }

.contact-info-list li strong {
    color: var(--dark-slate);
    font-weight: 600;
    margin-right: 5px;
}

.contact-info-list a {
    color: var(--ma-type-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding:40px 30px;
    }
    .privacy-section {
        padding: 40px 30px;
    }
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-card {
        padding: 25px;
    }
}
