/* Global Styles */
:root {
    --primary-blue: #0066cc;
    --primary-orange: #ff7700;
    --gradient-blue: linear-gradient(135deg, #0066cc, #004499);
    --gradient-orange: linear-gradient(135deg, #ff7700, #ff5500);
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header/Navigation */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-blue);
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 80px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: var(--transition);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.quote-btn {
    background: var(--gradient-orange);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(0, 68, 153, 0.8));
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btn {
    background: var(--gradient-orange);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.intro-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    z-index: 0;
}

.intro-section .container {
    position: relative;
    z-index: 1;
}

.intro-content {
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.intro-content p:first-child {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.intro-content p:first-child:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
}

.intro-content p:last-child {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-top: 20px;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.about-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9));
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    margin: 30px auto 0;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
    transition: var(--transition);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* How It Works Section (Our Process) */
.how-it-works-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

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

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-orange);
    animation: expandWidth 1.5s ease-out forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.steps-container {
    position: relative;
    margin-top: 30px;
}

.steps-container:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--gradient-blue);
    z-index: 1;
}

.step-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid transparent;
    border-image: var(--gradient-blue);
    border-image-slice: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.why-choose-us-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9));
    z-index: 0;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 1;
}

/* Our Advantages Section */
.advantages-section {
    padding: 100px 0;
    background-color: white;
}

.advantage-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    border-image: var(--gradient-blue);
    border-image-slice: 1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--gradient-orange);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

.advantage-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.advantage-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Services We Offer Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    border-image: var(--gradient-orange);
    border-image-slice: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-orange);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: var(--transition);
}

.service-icon .step-number {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: none;
    box-shadow: none;
}

.service-card:hover .service-icon {
    background: var(--gradient-orange);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.why-choose-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.text-start.section-header h2:after {
    left: 0;
    transform: none;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: var(--transition);
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    min-width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.benefit-icon .step-number {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: none;
    box-shadow: none;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-container {
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -15px;
    top: -30px;
    color: rgba(0, 102, 204, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--primary-blue);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 2rem;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.sticky-cta .btn {
    background: var(--gradient-orange);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sticky-cta .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
    z-index: -1;
}

.sticky-cta .btn:hover:before {
    left: 100%;
}

.sticky-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 119, 0, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 119, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9));
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .row > div {
    margin-bottom: 30px;
}

.contact-info {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    animation: fadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-blue);
    transition: var(--transition);
}

.contact-info:hover:before {
    height: 100%;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    min-width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.contact-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    animation: fadeIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-form-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-orange);
    transition: var(--transition);
}

.contact-form-container:hover:before {
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-control, .form-select {
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
    transform: translateY(-2px);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-blue);
    font-weight: 500;
}

textarea.form-control {
    min-height: 150px;
}

.contact-form .btn-primary {
    background: var(--gradient-orange);
    border: none;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.6s ease;
}

.contact-form .btn-primary:hover:before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    transition: var(--transition);
}

.footer-links li:before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-links li:hover {
    padding-left: 20px;
}

.footer-links li:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.3);
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .quote-btn {
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* How It Works responsive styles */
    .steps-container:before {
        display: none; /* Hide the connecting line on mobile */
    }
    
    .step-card {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Why Choose Us responsive styles */
    .why-choose-us-section {
        text-align: center;
    }
    
    .why-choose-img {
        margin-bottom: 40px;
    }
    
    .text-start.section-header {
        text-align: center !important;
    }
    
    .text-start.section-header h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefit-item {
        text-align: left;
    }
}
