/* Legal Pages Styles (Privacy Policy & Disclosures) */

/* Breadcrumb Styles */
.breadcrumbs {
    background-color: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

/* Print functionality removed */

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb-list li:not(:last-child):after {
    content: "›";
    margin: 0 10px;
    color: #94a3b8;
}

.breadcrumb-list li a {
    color: #1a365d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #2c5aa0;
    text-decoration: underline;
}
.page-header {
    background-color: #1a365d;
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    font-weight: 500;
}

.page-header:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.page-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Privacy Policy Specific Styles */
.policy-content {
    background-color: #102a4c; /* Darker blue for more contrast */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 50px;
    margin-bottom: 60px;
}

.policy-content h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.policy-content h3 {
    color: #ffffff;
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: 700;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.policy-content p, .policy-content ul {
    color: #ffffff;
    line-height: 2.0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.policy-content ul {
    padding: 15px 30px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-date {
    font-style: italic;
    color: #ffffff;
    text-align: right;
    margin-top: 40px;
    font-size: 14px;
}

.contact-details {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffffff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    color: #ffffff;
}

/* Disclosures Specific Enhancements */
.disclosure-section {
    margin-bottom: 40px;
    padding: 40px;
    background-color: #102a4c; /* Darker blue for more contrast */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #ffffff;
    transition: transform 0.3s ease;
}

.disclosure-section:hover {
    transform: translateY(-5px);
}

.disclosure-section h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.disclosure-section h2:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #ffffff;
}

.disclosure-content {
    color: #ffffff;
    line-height: 2.0;
    font-weight: 500;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.disclosure-content ul {
    list-style: none;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
}

.disclosure-content li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.disclosure-content li:before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.disclosure-content strong {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* CTA section removed */

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .policy-content, .disclosure-section {
        padding: 30px 20px;
    }
    
    .disclosure-content, .policy-content p, .policy-content ul {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .disclosure-section h2, .policy-content h2 {
        font-size: 24px;
    }
    
    .policy-content h3 {
        font-size: 20px;
    }
}
