/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.15);
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5aa0;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.3px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5aa0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 90px 0 80px;
    background: #f8fafc;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 2rem;
    padding-top: 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cpa-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0369a1;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1.5px solid #06b6d4;
    letter-spacing: 0.2px;
}

.hero-tagline {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: -0.8rem;
    line-height: 1;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.highlight-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 500;
    color: #1a202c;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8fafc;
}

.services-category {
    margin-bottom: 5rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    border-left: 5px solid #2c5aa0;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.08);
}

.services-category-title {
    font-size: 1.6rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.3px;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e7ff;
}

.services-category-title i {
    font-size: 1.6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 60px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #2c5aa0;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f8fafc;
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
    background: white;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-card {
    background: linear-gradient(135deg, #f8fafc, #f0f9ff);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.12);
}

.credential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.credential-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.credential-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-category {
    margin-bottom: 5rem;
}

.testimonials-category-title {
    font-size: 1.6rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.3px;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e7ff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 90, 160, 0.15);
}

.testimonial-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    background: #f3f4f6;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0;
    font-style: italic;
    font-size: 0.95rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: #1a202c;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info p {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Resources Section */
.resources {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.12);
}

.resource-category {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: fit-content;
    letter-spacing: 0.5px;
}

.resource-card h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: auto;
    font-size: 0.95rem;
}

.resource-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 1rem;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #1a202c;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #4a5568;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-cta .btn {
    background: #2c5aa0;
    color: white;
    border: 2px solid #2c5aa0;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-2px);
}

.contact-cta .btn-primary {
    background: #2c5aa0;
    border-color: #2c5aa0;
    color: white;
}

.contact-cta .btn-primary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    color: white;
}

.contact-cta .btn-secondary {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.contact-cta .btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #a0aec0 !important;
    font-weight: 700;
}

/* Force override any blue colors in footer */
.footer h3,
.footer .footer-section h3,
.footer-logo span {
    color: #a0aec0 !important;
}

.footer a,
.footer-contact a,
.footer-contact a:link,
.footer-contact a:visited,
.footer-section a,
.footer-section ul li a,
.footer-section ul li a:link,
.footer-section ul li a:visited {
    color: #a0aec0 !important;
    text-decoration: none !important;
}

.footer a:hover,
.footer-contact a:hover,
.footer-section ul li a:hover {
    color: #cbd5e0 !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: #a0aec0;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a0aec0;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #a0aec0;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-contact i {
    color: #a0aec0;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

.women-in-business {
    font-size: 0.9rem;
    color: #d8b4fe;
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Responsive Design */
@media (min-width: 769px) {
    .contact-info-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.6rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-category {
        padding: 2rem 1.5rem;
    }

    .services-category-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

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

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

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
    
    .contact-cta h3 {
        font-size: 1.6rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-item,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .about,
    .services {
        padding: 20px 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    cursor: pointer;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
}

.modal-category {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-right: 2rem;
}

.modal-body h4 {
    font-size: 1.05rem;
    color: #2c5aa0;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}

.modal-body p {
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.modal-body ul {
    color: #4a5568;
    padding-left: 1.5rem;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.modal-cta-text {
    margin-top: 2rem !important;
    padding: 1rem 1.2rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    font-weight: 500;
}

.modal-cta-text a {
    color: #2c5aa0;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.8rem 1.2rem;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }
}
