/* Compliance Page Styles */

/* Hero Section */
.compliance-hero {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.compliance-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.compliance-hero-subtitle {
    font-size: 1.3rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Policy Overview */
.policy-overview {
    padding: 80px 0;
    background: #ffffff;
}

.policy-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.policy-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.policy-card:hover::before {
    width: 8px;
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.policy-card:hover .policy-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
}

.policy-content p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Documentation Provided */
.documentation-provided {
    padding: 80px 0;
    background: #f8f9fa;
}

.documentation-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.doc-item {
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.doc-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.doc-item:hover::before {
    width: 8px;
}

.doc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.doc-item:hover .doc-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.doc-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
}

.doc-item p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}


/* Disclaimer Section */
.compliance-disclaimer {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #d4af37;
    border-radius: 15px;
}

.disclaimer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.disclaimer-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.disclaimer-text p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.compliance-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.compliance-cta .cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .compliance-hero-title {
        font-size: 2.5rem;
    }
    
    .compliance-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-card {
        flex-direction: column;
        text-align: center;
    }
    
    .documentation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


