.elementor-393 .elementor-element.elementor-element-fe1de85{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cd100a0 *//* Call-to-Action Section Styles */
.cta-section {
    background-color: #f3f4f6;
    padding: 80px 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Title Styling */
.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Subtitle Styling */
.cta-subtitle {
    font-size: 17px;
    color: #1f2937;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Button Container */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Base Button Styling */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 98px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

/* Primary Button (Get Started Now) with Bounce Animation */
.cta-primary {
    background-color: #047857;
    color: white;
    border-color: #047857;
    animation: bounce 2s infinite;
}

.cta-primary:hover {
    background-color: #065f46;
    border-color: #065f46;
    transform: translateY(-2px);
    animation: none;
}

/* Bounce Animation Keyframes */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Secondary Button (Schedule Consultation) */
.cta-secondary {
    background-color: white;
    color: #1f2937;
    border-color: #d1d5db;
}

.cta-secondary:hover {
    background-color: #047857;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

/* Icon Styling */
.cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        gap: 12px;
        width: 100%;
    }
    
    .cta-button {
        flex: 1;
        max-width: 180px;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 16px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 10px 12px;
        font-size: 13px;
        max-width: 160px;
    }
    
    .cta-icon {
        width: 16px;
        height: 16px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-subtitle {
        font-size: 12px;
    }
    
    .cta-button {
        max-width: 190px;
        padding: 8px 10px;
        font-size: 8px;
    }
}/* End custom CSS */