:root {
    --navy-blue: #001f3f;
    --orange: #FFA500;
    --dark-orange: #FF6347;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #666;
    --border-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TASA Explorer', sans-serif;
    color: var(--navy-blue);
    line-height: 1.8;
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.policy-header {
    background: var(--navy-blue);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--orange);
}

.back-link i {
    font-size: 1rem;
}

.header-logo img {
    height: 50px;
    width: auto;
}

/* Main Content */
.policy-main {
    padding: 3rem 0;
}

.policy-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.policy-title-section {
    background: linear-gradient(135deg, var(--navy-blue), #0d2847);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.policy-title-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.policy-title-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.policy-dates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.policy-dates p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Policy Content */
.policy-content {
    padding: 3rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border-gray);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.policy-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--dark-orange));
    border-radius: 3px;
}

.policy-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-section li {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box i {
    color: var(--orange);
    margin-right: 0.5rem;
}

.contact-box a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    color: var(--orange);
}

/* Footer Actions */
.policy-footer-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 3rem 3rem;
}

.btn-back-home,
.btn-print {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back-home {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    color: var(--white);
    border: none;
}

.btn-back-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 99, 71, 0.3);
}

.btn-print {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-print:hover {
    background: var(--navy-blue);
    color: var(--white);
}

/* Footer */
.policy-footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.policy-footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.crafted-by a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.crafted-by a:hover {
    color: var(--dark-orange);
}

/* Print Styles */
@media print {
    .policy-header,
    .policy-footer-actions,
    .policy-footer {
        display: none;
    }
    
    .policy-container {
        box-shadow: none;
    }
    
    .policy-section {
        page-break-inside: avoid;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .policy-title-section h1 {
        font-size: 2rem;
    }
    
    .policy-title-section h2 {
        font-size: 1.2rem;
    }
    
    .policy-dates {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-footer-actions {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .btn-back-home,
    .btn-print {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .policy-title-section {
        padding: 2rem 1rem;
    }
    
    .policy-title-section h1 {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .policy-section ul {
        margin-left: 1rem;
    }
}
