/* Privacy Policy Page Specific Styles */
body {
    font-family: 'Inter', sans-serif;
    background: url('../../media/background.jpg') center/cover no-repeat fixed;
    color: #e8f5f5;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Body Override for Privacy Page */
.privacy-page {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
}

/* Back to Home Button */
.back-home {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(26, 51, 51, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(64, 224, 208, 0.5);
    border-radius: 16px;
    color: #40E0D0;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.back-home:hover {
    background: rgba(26, 51, 51, 1);
    border-color: #40E0D0;
    transform: translateX(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.back-home svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Main Container */
.privacy-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 120px 40px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Content Box */
.privacy-content {
    max-width: 900px;
    width: 100%;
    padding: 60px;
    background: rgba(26, 51, 51, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(64, 224, 208, 0.4);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(64, 224, 208, 0.2);
}

.privacy-content:hover {
    transform: none;
}

.privacy-content::before {
    display: none;
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(64, 224, 208, 0.3);
}

.privacy-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7)) 
            drop-shadow(0 0 40px rgba(64, 224, 208, 0.3));
}

.privacy-header h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 3.5rem;
    color: #40E0D0;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.last-updated {
    font-size: 1rem;
    color: #8dd3c7;
    font-weight: 400;
    font-style: italic;
}

/* Sections */
.privacy-section {
    margin-bottom: 45px;
}

.privacy-section h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.8rem;
    color: #40E0D0;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.privacy-section h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.4rem;
    color: #40E0D0;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.privacy-section p {
    font-size: 1.05rem;
    color: #e8f5f5;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

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

.privacy-section ul li {
    font-size: 1.05rem;
    color: #e8f5f5;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-weight: 300;
}

.privacy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: 600;
    font-size: 1.2rem;
}

.privacy-section a {
    color: #40E0D0;
    text-decoration: none;
    border-bottom: 1px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    color: #5ff5e3;
    border-bottom-color: #40E0D0;
}

/* Info Table */
.info-table {
    margin: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 16px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(64, 224, 208, 0.1);
}

.table-row:first-child {
    background: rgba(64, 224, 208, 0.2);
}

.table-cell {
    padding: 15px 20px;
    background: rgba(26, 51, 51, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.table-row:first-child .table-cell {
    background: rgba(26, 51, 51, 0.8);
    font-weight: 600;
    color: #40E0D0;
}

/* Contact Details Box */
.contact-details {
    margin-top: 25px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 16px;
}

.contact-details p {
    margin-bottom: 10px;
}

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

.contact-details strong {
    color: #40E0D0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-container {
        padding: 100px 30px 50px;
    }

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

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

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

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

@media (max-width: 768px) {
    .back-home {
        top: 20px;
        left: 20px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .back-home span {
        display: none;
    }

    .back-home svg {
        width: 20px;
        height: 20px;
    }

    .privacy-container {
        padding: 80px 20px 40px;
    }

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

    .privacy-logo {
        width: 150px;
        margin-bottom: 20px;
    }

    .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

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

    .last-updated {
        font-size: 0.9rem;
    }

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

    .privacy-section h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .privacy-section ul li {
        padding-left: 25px;
        margin-bottom: 12px;
    }

    .privacy-section ul li::before {
        font-size: 1rem;
    }

    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .contact-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 20px;
    }

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

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

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

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .back-home {
        display: none;
    }

    body::before {
        display: none;
    }

    .privacy-content {
        background: white;
        color: black;
        border: none;
        box-shadow: none;
    }

    .privacy-header h1,
    .privacy-section h2,
    .privacy-section h3,
    .privacy-section a,
    .contact-details strong {
        color: #1a3333;
    }

    .privacy-section p,
    .privacy-section ul li {
        color: #333;
    }

    .last-updated {
        color: #666;
    }
}
