/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6B7280;
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #25D366;
}

.whatsapp-icon {
    flex-shrink: 0;
    color: #25D366;
}

.whatsapp-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.whatsapp-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 25px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: none;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Legal Section */
.legal-section {
    padding: 80px 0;
    background-color: #FEF3C7;
}

.legal-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 5px solid #F59E0B;
}

.legal-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.legal-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 25px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links a {
    padding: 10px 20px;
    background-color: #F3F4F6;
    color: #1F2937;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.legal-links a:hover {
    background-color: #000000;
    color: white;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.compliance-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.compliance-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.compliance-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.compliance-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
}

.compliance-item a {
    color: #8B5CF6;
    text-decoration: underline;
}

.compliance-item a:hover {
    color: #EC4899;
}

/* Active Navigation */
.navigation a.active {
    color: #8B5CF6;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 42px;
    }

    .about-card {
        flex-direction: column;
        padding: 30px;
    }

    .about-icon {
        width: 70px;
        height: 70px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .whatsapp-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-card {
        padding: 25px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .legal-section {
        padding: 60px 0;
    }

    .legal-card {
        padding: 30px 20px;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-card {
        padding: 20px;
    }

    .about-icon {
        width: 60px;
        height: 60px;
    }

    .about-icon svg {
        width: 40px;
        height: 40px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
    }

    .whatsapp-card {
        padding: 30px 20px;
    }

    .whatsapp-content h2 {
        font-size: 22px;
    }

    .whatsapp-content p {
        font-size: 14px;
    }

    .legal-links {
        flex-direction: column;
    }

    .legal-links a {
        text-align: center;
    }
}
