/* Resizelabs - Privacy Policy Page Styles */
/* Import base styles from index.css */
@import url('index.css');

/* Privacy Page Specific Styles */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 40px;
    text-align: center;
    min-height: 40vh;
    border-bottom: 1px solid #dee2e6;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

.hero-title .highlight {
    color: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.last-updated i {
    font-size: 1.1rem;
}

/* Privacy Content */
.privacy-content {
    padding: 3rem 0;
    background: var(--light-gray);
    min-height: 70vh;
}

.content-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Navigation */
.sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
    bottom: auto;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    padding: 2rem;
}

.sidebar h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.sidebar h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-link {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--gray);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.toc-link.active {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Main Content */
.main-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.content-section {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

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

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 1rem;
}

.content-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.content-section ul,
.content-section ol {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
}

.content-section strong {
    color: var(--dark);
    font-weight: 600;
}

/* Highlight Boxes */
.highlight-box {
    background: rgba(255, 107, 107, 0.05);
    border: 2px solid rgba(255, 107, 107, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.highlight-box::before {
    content: '⚠️';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0 0.5rem;
    font-size: 1.2rem;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Contact Details */
.contact-details {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

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

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

/* Acknowledgment Box */
.acknowledgment {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.acknowledgment p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }

    .sidebar-sticky {
        padding: 1.5rem;
    }

    .main-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 30px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sidebar {
        order: 2;
        position: static;
    }

    .sidebar-sticky {
        position: static;
        padding: 1.5rem;
    }

    .toc-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .main-content {
        order: 1;
        padding: 2rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 25px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .privacy-content {
        padding: 2rem 0;
    }

    .content-layout {
        padding: 0 15px;
        display: flex;
        flex-direction: column-reverse;
    }

    .sidebar-sticky {
        padding: 1rem;
    }

    .main-content {
        padding: 1.5rem;
    }

    .toc-nav {
        grid-template-columns: 1fr;
    }

    .content-section {
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }

    .content-section p,
    .content-section li {
        font-size: 0.95rem;
    }

    .highlight-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .acknowledgment {
        padding: 1.5rem;
    }
}