/* Policy Pages Common Styles */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD300, #FF4788);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.policy-date {
    font-size: 0.9rem;
    color: #FFD300;
    opacity: 0.8;
}

.policy-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
}

.policy-content h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.8rem;
    color: #FFD300;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 211, 0, 0.3);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    color: #FF4788;
    margin: 30px 0 15px 0;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #F1F1F1;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    color: #F1F1F1;
}

.policy-content strong {
    color: #FFD300;
    font-weight: 600;
}

.policy-content em {
    color: #FF4788;
    font-style: italic;
}

.policy-content a {
    color: #FFD300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #FF4788;
    text-decoration: underline;
}

.policy-contact {
    background: rgba(255, 211, 0, 0.1);
    border: 1px solid rgba(255, 211, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.policy-contact h3 {
    color: #FFD300;
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-contact p {
    margin-bottom: 10px;
}

.policy-back {
    text-align: center;
    margin-top: 40px;
}

.policy-back a {
    display: inline-block;
    background: linear-gradient(135deg, #FFD300, #FF4788);
    color: #006E5B;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-back a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 211, 0, 0.3);
}

.policy-highlight {
    background: rgba(255, 71, 136, 0.1);
    border-left: 4px solid #FF4788;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.policy-highlight p {
    margin-bottom: 0;
    color: #FF4788;
    font-weight: 500;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.policy-table th,
.policy-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-table th {
    background: rgba(255, 211, 0, 0.1);
    color: #FFD300;
    font-weight: 600;
}

.policy-table td {
    color: #F1F1F1;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 100px 15px 60px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-table {
        font-size: 0.9rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 8px;
    }
} 