/* Policies Specific Styles */
.policy-section {
    padding: 100px 0;
    background: #f8f9fd;
    min-height: 100vh;
}

.policy-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.policy-date {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 60px;
}

.policy-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin: 48px 0 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.policy-content h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.policy-content h3 {
    font-size: 24px;
    color: #333;
    margin: 32px 0 16px;
}

.policy-content h4 {
    font-size: 20px;
    color: #444;
    margin: 24px 0 12px;
}

.policy-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-content ul li {
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.policy-content a {
    color: #0066FF;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Tables */
.cookie-table,
.risk-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.risk-table th {
    background: #f5f5f5;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.cookie-table td,
.risk-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-table tr:last-child td,
.risk-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover,
.risk-table tr:hover {
    background: #f9f9f9;
}

/* Policy Footer */
.policy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.policy-footer p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 40px 20px;
    }
    
    .policy-title {
        font-size: 36px;
    }
    
    .policy-content h2 {
        font-size: 28px;
    }
    
    .policy-content h3 {
        font-size: 22px;
    }
    
    .cookie-table,
    .risk-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cookie-table td,
    .cookie-table th,
    .risk-table td,
    .risk-table th {
        padding: 12px;
        font-size: 14px;
    }
}

/* Add responsive feature grid adjustment */
@media (max-width: 1024px) {
    .features-grid.three-columns {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 28px;
    }
    
    .policy-content {
        padding: 30px 15px;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .policy-content h3 {
        font-size: 20px;
    }
}