/* Policies Page */

.doa-policies-page {
    background: white;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Override any parent containers */
.page-template-page-policies {
    max-width: 100% !important;
}

.page-template-page-policies .site-content,
.page-template-page-policies .content-area,
.page-template-page-policies .inside-article {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hero Section */
.policies-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 40px;
    color: white;
    text-align: center;
}

.policies-hero h1 {
    margin: 0 0 16px;
    font-size: 42px;
    color: white;
}

.last-updated {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Content Section */
.policies-content {
    padding: 60px 0;
}

/* Policy Navigation Tabs */
.policy-categories {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.policy-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    text-decoration: none;
}

.policy-tab:hover {
    border-color: #667eea;
    color: #667eea;
}

.policy-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* Main Content Wrapper */
.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 100%;
}

.policy-content h2 {
    color: #333;
    font-size: 28px;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3a9d82;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    color: #444;
    font-size: 22px;
    margin: 32px 0 16px;
}

.policy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content a {
    color: #667eea;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content strong {
    color: #333;
}

.policy-content code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

/* Contact Section */
.policy-contact {
    margin-top: 60px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3a9d82;
}

.policy-contact h3 {
    color: #333;
    font-size: 20px;
    margin: 0 0 12px;
}

.policy-contact p {
    color: #666;
    margin: 0 0 16px;
}

.policy-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-contact li {
    color: #555;
    margin-bottom: 8px;
}

.policy-contact a {
    color: #667eea;
    text-decoration: none;
}

.policy-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .policies-hero h1 {
        font-size: 32px;
    }

    .policy-categories {
        gap: 8px;
    }

    .policy-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .policy-content {
        padding: 32px 24px;
    }

    .policy-content h2 {
        font-size: 24px;
    }

    .policy-content h3 {
        font-size: 20px;
    }
}
