/* ============================================
   POLICY PAGES STYLING
   ============================================ */

/* Policy Banner Section */
.policy-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.policy-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.policy-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Policy Content Section */
.policy-content-section {
    padding: 4rem 2rem;
    background: #fff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Typography for Policy Content */
.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ff6b35;
}

.policy-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4d4d4d;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.25rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

.policy-content li p {
    margin-bottom: 0.5rem;
}

.policy-content ul ul,
.policy-content ul ol,
.policy-content ol ul,
.policy-content ol ol {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.policy-content strong {
    color: #2d2d2d;
    font-weight: 600;
}

.policy-content a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-content a:hover {
    color: #f7931e;
    border-bottom-color: #f7931e;
}

/* Special Formatting */
.policy-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.policy-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #d63384;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-banner {
        padding: 6rem 1.5rem 3rem;
    }

    .policy-banner-title {
        font-size: 2rem;
    }

    .policy-banner-subtitle {
        font-size: 1rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .policy-content h3 {
        font-size: 1.25rem;
    }

    .policy-content h4 {
        font-size: 1.1rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.95rem;
    }

    .policy-content ul,
    .policy-content ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-banner {
        padding: 5rem 1rem 2.5rem;
    }

    .policy-banner-title {
        font-size: 1.75rem;
    }

    .policy-banner-subtitle {
        font-size: 0.95rem;
    }

    .policy-content {
        padding: 1.5rem 1rem;
    }

    .policy-content h1 {
        font-size: 1.75rem;
    }

    .policy-content h2 {
        font-size: 1.35rem;
    }

    .policy-content h3 {
        font-size: 1.15rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .policy-banner {
        display: none;
    }

    .policy-content {
        box-shadow: none;
        padding: 0;
    }

    .policy-content a {
        color: #000;
        text-decoration: underline;
    }
}
