/* ========================================
   Privacy Policy Page Styles
   Jillian Thomas & Co
   ======================================== */

.privacy-page {
    background-color: var(--cream);
    min-height: 100vh;
    padding: 60px 24px 0;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.privacy-header {
    background: linear-gradient(135deg, var(--black) 0%, #2A2A2A 100%);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.privacy-header h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--white);
}

.privacy-company {
    font-size: 24px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 24px;
}

.back-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.back-link:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.privacy-content {
    padding: 60px 40px;
}

.privacy-section {
    margin-bottom: 48px;
}

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

.privacy-section h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--light-purple);
}

.privacy-section h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    margin-top: 32px;
}

.privacy-section h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    margin-top: 24px;
}

.privacy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.privacy-section ul {
    margin: 20px 0 20px 24px;
    padding: 0;
}

.privacy-section li {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.privacy-section strong {
    font-weight: 700;
    color: var(--black);
}

.privacy-section a {
    color: var(--purple);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--teal);
}

.contact-box {
    background-color: var(--light-purple);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--purple);
    margin-top: 24px;
}

.contact-box p {
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.last-updated {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(141, 28, 144, 0.2);
    font-style: italic;
    color: #666;
}

/* Footer Separator */
.footer-separator {
    margin: 0 12px;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-page {
        padding: 40px 16px 0;
    }

    .privacy-container {
        border-radius: 12px;
    }

    .privacy-header {
        padding: 40px 24px;
    }

    .privacy-header h1 {
        font-size: 36px;
    }

    .privacy-company {
        font-size: 20px;
    }

    .privacy-content {
        padding: 40px 24px;
    }

    .privacy-section h2 {
        font-size: 28px;
    }

    .privacy-section h3 {
        font-size: 24px;
    }

    .privacy-section h4 {
        font-size: 20px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 16px;
    }

    .contact-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 28px;
    }

    .privacy-company {
        font-size: 18px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }
}
