/* Privacy Policy Page Styles */
.policy-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
}

/* Header Styles */
.policy-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0;
    border-bottom: 2px solid #D4AF37;
    margin-bottom: 40px;
}

.military-badge {
    text-align: center;
    position: relative;
}

.military-badge .badge-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.policy-header h1 {
    font-size: 3.5rem;
    color: #D4AF37;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.policy-header .subtitle {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-top: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Policy Info Box */
.policy-info-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-item .label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item .value {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

/* Table of Contents */
.policy-toc {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
}

.policy-toc h2 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 15px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-family: 'Rajdhani', sans-serif;
}

.toc-list a:hover,
.toc-list a.active {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-left-color: #D4AF37;
    transform: translateX(5px);
}

/* Policy Sections */
.policy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    scroll-margin-top: 100px;
}

.policy-section h2 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    background: #D4AF37;
    color: #1a1a2e;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.policy-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.policy-section p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
}

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

.policy-section li {
    color: #e0e0e0;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.policy-section li::before {
    content: "▶";
    color: #D4AF37;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.8rem;
}

.policy-section strong {
    color: #D4AF37;
    font-weight: 600;
}

/* Contact Cards */
.contact-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #D4AF37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card ul {
    margin: 0;
}

.contact-card li {
    padding: 8px 0;
}

.contact-card a {
    color: #87CEEB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

/* Policy Footer */
.policy-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid #D4AF37;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}

.policy-footer .last-updated {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.policy-footer p {
    color: #888;
    margin-bottom: 30px;
    font-size: 1rem;
}

.back-to-top {
    margin-top: 20px;
}

.back-to-top .btn {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.back-to-top .btn:hover {
    background: #D4AF37;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .policy-header h1 {
        font-size: 2.8rem;
    }

    .policy-toc {
        position: static;
        margin-bottom: 30px;
    }

    .policy-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .policy-header {
        padding: 40px 0;
    }

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

    .policy-header .subtitle {
        font-size: 1.1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .policy-section {
        padding: 20px;
    }

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

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .policy-footer {
        padding: 30px 20px;
    }
}

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

    .policy-toc {
        padding: 20px;
    }

    .policy-toc h2 {
        font-size: 1.4rem;
    }

    .toc-list a {
        font-size: 1rem;
        padding: 6px 10px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .policy-page {
        background: white;
        color: black;
    }

    .nav-menu,
    .nav-toggle,
    .footer,
    .back-to-top {
        display: none !important;
    }

    .policy-header,
    .policy-section {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }

    .policy-header h1,
    .policy-section h2,
    .policy-section h3 {
        color: black;
    }

    .policy-section p,
    .policy-section li {
        color: black;
    }

    .section-number {
        background: #ccc;
        color: black;
    }
}