/* Policy Pages Styles */
.policy-page {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fdf0d5, #ffffff);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 3px solid #ec7357;
}

.policy-header h1 {
    color: #3f51b5;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-header p {
    font-size: 1.2rem;
    color: #2c2c2c;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.policy-content h2 {
    color: #3f51b5;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fdf0d5;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    color: #ec7357;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.policy-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.policy-content strong {
    color: #3f51b5;
    font-weight: 600;
}

.policy-content em {
    color: #ec7357;
    font-style: italic;
}

.policy-content a {
    color: #ec7357;
    font-weight: 600;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #3f51b5;
}

.policy-highlight {
    background: linear-gradient(135deg, #c6ff00, #a6d900);
    color: #2c2c2c;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #3f51b5;
}

.policy-highlight h3 {
    color: #2c2c2c;
    margin-bottom: 15px;
}

.policy-highlight p {
    color: #2c2c2c;
    font-weight: 500;
}

.policy-contact {
    background: linear-gradient(135deg, #3f51b5, #2d3a8c);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.policy-contact h3 {
    color: white;
    margin-bottom: 20px;
}

.policy-contact p {
    color: white;
    margin-bottom: 15px;
}

.policy-contact a {
    color: #c6ff00;
    font-weight: 600;
}

.policy-contact a:hover {
    color: #fdf0d5;
}

.policy-navigation {
    text-align: center;
    margin-top: 40px;
}

.policy-navigation a {
    display: inline-block;
    background: linear-gradient(135deg, #ec7357, #d65a3c);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.policy-navigation a:hover {
    background: linear-gradient(135deg, #3f51b5, #2d3a8c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.policy-last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #fdf0d5;
    border-radius: 15px;
    border: 2px solid #ec7357;
}

.policy-last-updated p {
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-table th,
.policy-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #fdf0d5;
}

.policy-table th {
    background: linear-gradient(135deg, #3f51b5, #2d3a8c);
    color: white;
    font-weight: 600;
}

.policy-table tr:hover {
    background: #fdf0d5;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
    
    .policy-navigation a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .policy-page {
        padding: 80px 0 60px;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-header p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .policy-navigation,
    .policy-contact {
        display: none;
    }
    
    .policy-page {
        padding: 0;
        background: white;
    }
    
    .policy-content {
        box-shadow: none;
        padding: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
} 