/* Policy Pages Styles */
.policy-page {
    background-color: #F1FAF5;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1FAF5 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(23, 73, 77, 0.1);
}

.policy-title {
    font-size: 2.5rem;
    color: #17494D;
    margin-bottom: 1rem;
    position: relative;
}

.policy-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F94144, #F9C74F);
    transform: translateX(-50%);
}

.policy-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.policy-date {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.policy-body {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(23, 73, 77, 0.1);
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section-title {
    font-size: 1.5rem;
    color: #17494D;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F9C74F;
}

.policy-section-content {
    color: #555;
    margin-bottom: 1.5rem;
}

.policy-section-content h4 {
    color: #17494D;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-section-content p {
    margin-bottom: 1rem;
}

.policy-section-content ul,
.policy-section-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section-content li {
    margin-bottom: 0.5rem;
}

.policy-section-content strong {
    color: #17494D;
}

.policy-section-content em {
    color: #F94144;
}

.policy-highlight {
    background: linear-gradient(135deg, #F9C74F, #F94144);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.policy-important {
    background: rgba(249, 65, 68, 0.1);
    border-left: 4px solid #F94144;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.policy-important p {
    margin-bottom: 0.5rem;
}

.policy-note {
    background: rgba(23, 73, 77, 0.1);
    border-left: 4px solid #17494D;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.policy-note p {
    margin-bottom: 0.5rem;
}

.policy-contact {
    background: linear-gradient(135deg, #17494D, #0B2C2D);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.policy-contact h3 {
    color: white;
    margin-bottom: 1rem;
}

.policy-contact p {
    margin-bottom: 0.5rem;
    color: white;
}

.policy-contact strong {
    color: white !important;
}

.policy-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.policy-contact a:hover {
    text-decoration: underline;
    color: #F9C74F;
}

.policy-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #17494D;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-back-link:hover {
    color: #F94144;
}

.policy-back-link::before {
    content: '← ';
    margin-right: 0.5rem;
}

.policy-toc {
    background: rgba(23, 73, 77, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.policy-toc h4 {
    color: #17494D;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-toc li {
    margin-bottom: 0.5rem;
}

.policy-toc a {
    color: #17494D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-toc a:hover {
    color: #F94144;
}

.policy-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}

.policy-footer-nav a {
    color: #17494D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-footer-nav a:hover {
    color: #F94144;
}

.policy-footer-nav .nav-prev::before {
    content: '← ';
    margin-right: 0.5rem;
}

.policy-footer-nav .nav-next::after {
    content: ' →';
    margin-left: 0.5rem;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 1rem;
    }
    
    .policy-header {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-body {
        padding: 2rem 1.5rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
    
    .policy-section-title {
        font-size: 1.3rem;
    }
    
    .policy-footer-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 1.5rem;
    }
    
    .policy-body {
        padding: 1.5rem 1rem;
    }
    
    .policy-section-title {
        font-size: 1.2rem;
    }
    
    .policy-section-content ul,
    .policy-section-content ol {
        margin-left: 1rem;
    }
} 