/* Policy Pages CSS */

.policy-main {
    padding: 2rem 0 4rem;
    background: #f9fafb;
    min-height: 100vh;
}

.policy-header {
    background: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.policy-nav {
    text-align: center;
}

.policy-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.policy-section h3 {
    color: #4b5563;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.policy-section h4 {
    color: #6b7280;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #666;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.company-info {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

.browser-instructions {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.browser-instructions h4 {
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.browser-instructions p {
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #8b5cf6;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f9fafb;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2.2rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .contact-info,
    .company-info,
    .browser-instructions {
        padding: 1.5rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 1.8rem;
    }

    .policy-content {
        padding: 1.5rem 1rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .contact-info,
    .company-info,
    .browser-instructions {
        padding: 1rem;
    }
}
