/* privacy-policy.css */
:root {
    --primary-color: #d54371;
    --secondary-color: #dd698d;
    --text-color: #1f2937;
    --background-color: #ffffff;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --header-height: 80px;
    --container-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.main-nav a.active,
.main-nav a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

/* Main Content */
.main-content {
    margin-top: var(--header-height);
    padding: 2rem 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Policy Navigation */
.policy-nav {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    background: var(--background-color);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.policy-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.875rem;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.policy-nav a:hover,
.policy-nav a.active {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: calc(var(--header-height) + 120px);
    padding-top: 1rem;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    position: relative;
}
.policy-section h3 {
    color: Black;
    margin-bottom: 1.5rem;
    font-size: 1.575rem;
    position: relative;
}
.section-content {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Contact Card */
.contact-card {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: grid;
    gap: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
.site-footer {
    background: var(--text-color);
    color: var(--background-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-color);
        margin: 4px 0;
        transition: 0.3s;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--background-color);
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .section-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.75rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}