/* Privacy Policy Specific Styles */

.privacy-main {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.privacy-header {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #2D2D2D;
    padding: 3rem 2rem;
    text-align: center;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.privacy-body {
    padding: 3rem 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

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

.privacy-section h2 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFC107;
    display: inline-block;
}

.privacy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section .intro {
    font-size: 1.1rem;
    color: #FF8F00;
    font-weight: 500;
    background: #FFF8E1;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFC107;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section ul li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #555;
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #FF8F00;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section ul li strong {
    color: #333;
    font-weight: 600;
}

.contact-info {
    background: #FFF8E1;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #FFE0B2;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #333;
}

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

.privacy-footer {
    background: #FFF8E1;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #FFE0B2;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.back-to-home .btn i {
    font-size: 0.9rem;
}

/* Navigation active state for privacy page */
.nav-link.active {
    color: #F57C00 !important;
    font-weight: 600;
}

/* Table of Contents (if needed) */
.privacy-toc {
    background: #FFF8E1;
    border: 1px solid #FFE0B2;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-toc h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
}

.privacy-toc ul li {
    padding: 0.3rem 0;
}

.privacy-toc ul li::before {
    content: "→";
    color: #FF8F00;
    margin-right: 0.5rem;
    font-weight: bold;
}

.privacy-toc a {
    color: #FF8F00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-toc a:hover {
    color: #F57C00;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-main {
        padding-top: 80px;
    }

    .privacy-content {
        margin: 1rem;
        border-radius: 15px;
    }

    .privacy-header {
        padding: 2rem 1.5rem;
    }

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

    .privacy-body {
        padding: 2rem 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        margin: 0.5rem;
    }

    .privacy-header {
        padding: 1.5rem 1rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-body {
        padding: 1.5rem 1rem;
    }

    .privacy-section ul li {
        padding-left: 1.5rem;
    }

    .contact-info {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .privacy-footer,
    .back-to-home {
        display: none;
    }

    .privacy-main {
        padding-top: 0;
    }

    .privacy-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .privacy-header {
        background: #f0f0f0 !important;
        color: #333 !important;
    }

    .privacy-section {
        page-break-inside: avoid;
    }

    .privacy-section h2 {
        page-break-after: avoid;
    }
}

/* Accessibility Improvements */
.privacy-section h2:focus,
.privacy-toc a:focus,
.back-to-home .btn:focus {
    outline: 2px solid #FFC107;
    outline-offset: 2px;
}

/* Animation for smooth appearance */
.privacy-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight important sections */
.privacy-section:nth-child(2),
.privacy-section:nth-child(6) {
    position: relative;
}

.privacy-section:nth-child(2)::before,
.privacy-section:nth-child(6)::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .privacy-section:nth-child(2)::before,
    .privacy-section:nth-child(6)::before {
        left: -1.5rem;
    }
}