/* Policy Pages Styles */
.policy-page {
    padding: 2rem 0;
    min-height: calc(100vh - 160px);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 194, 203, 0.3);
}

.policy-title {
    font-size: 2.5rem;
    color: #00c2cb;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    opacity: 0.9;
}

.policy-content {
    color: #f0f0f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 31, 63, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(0, 194, 203, 0.4);
    box-shadow: 0 5px 20px rgba(0, 194, 203, 0.1);
}

.policy-section h2 {
    color: #00c2cb;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    border-radius: 2px;
}

.policy-section h3 {
    color: #ffcc00;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-section ul,
.policy-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.policy-section strong {
    color: #00c2cb;
    font-weight: 600;
}

.policy-section em {
    color: #ffcc00;
    font-style: normal;
}

.policy-highlight {
    background: rgba(0, 194, 203, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #00c2cb;
    margin: 1.5rem 0;
}

.policy-highlight p {
    margin-bottom: 0;
    color: #ffffff;
}

.policy-contact {
    background: rgba(0, 31, 63, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 194, 203, 0.3);
    margin-top: 3rem;
    text-align: center;
}

.policy-contact h3 {
    color: #00c2cb;
    margin-bottom: 1rem;
}

.policy-contact p {
    margin-bottom: 1rem;
}

.policy-contact a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-contact a:hover {
    color: #00c2cb;
    text-decoration: underline;
}

.policy-back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    color: #001f3f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.policy-back-link:hover::before {
    left: 100%;
}

.policy-back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.policy-last-updated {
    text-align: center;
    color: #f0f0f0;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 194, 203, 0.2);
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-subtitle {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-content {
        font-size: 1rem;
    }
    
    .policy-section ul,
    .policy-section ol {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 0 15px;
    }
    
    .policy-page {
        padding: 1rem 0;
    }
    
    .policy-title {
        font-size: 1.8rem;
    }
    
    .policy-section {
        padding: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-highlight {
        padding: 0.8rem;
    }
    
    .policy-contact {
        padding: 1.5rem;
    }
    
    .policy-section ul,
    .policy-section ol {
        margin-left: 1rem;
    }
} 