/* Policy Pages Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    margin: 0;
    padding: 0;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-content {
    background: white;
    border-radius: 0;
    padding: 0 20px;
    box-shadow: none;
}

.policy-header {
    border-bottom: 3px solid #667eea;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.policy-header h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.policy-header p {
    color: #718096;
    font-size: 1rem;
}

.section {
    margin: 40px 0;
}

.section h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.section h3 {
    color: #4a5568;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.section h4 {
    color: #4a5568;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.section ul, .section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.section li {
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.8;
}

.section strong {
    color: #2d3748;
}

/* Info Boxes */
.highlight-box {
    background: #eef2ff;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.success-box {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.warning-box {
    background: #fefce8;
    border-left: 4px solid #eab308;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.gdpr-box {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.important-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

th {
    background: #667eea;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

tr:nth-child(even) {
    background: #f8fafc;
}

tr:hover {
    background: #f1f5f9;
}

/* Contact Page Specific */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-card h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 10px;
}

/* Form Styles */
.contact-form {
    margin-top: 40px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Process Steps */
.process-steps {
    counter-reset: step-counter;
    margin: 30px 0;
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
    counter-increment: step-counter;
}

.process-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Data Rights Cards */
.data-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #667eea;
}

.right-card h4 {
    color: #2d3748;
    margin-bottom: 10px;
}

.right-card p {
    color: #4a5568;
}

/* Back Link - Hidden */
.back-link {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-content {
        padding: 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .data-rights {
        grid-template-columns: 1fr;
    }
    
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 10px;
    }
}