/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #fe0000;
    --color-dark-bg: #0a0a0a;
    --color-dark-card: #111111;
    --color-gray: #666666;
    --color-light-gray: #999999;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-fixed.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-image {
    max-width: 100px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: var(--color-white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0 !important;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-red) !important;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-black);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: radial-gradient(circle at 20% 50%, rgba(254, 0, 0, 0.1) 0%, transparent 50%);*/
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.text-accent {
    color: var(--color-red);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(254, 0, 0, 0.3);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 0, 0, 0.2) 0%, transparent 50%);
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.hero-img {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===================================
   BUTTONS
   =================================== */

.btn-cta {
    background-color: #16b011;
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease-in-out;
    z-index: -1;
}

.btn-cta:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta i {
    font-size: 1.25rem;
}

.btn-whatsapp {
    background-color: #16b011;
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-submit {
    background-color: #16b011;
    color: var(--color-white);
    padding: 1.1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #00a844;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

/* ===================================
   FORM SECTION
   =================================== */

.form-section {
    padding: 100px 0;
    background-color: var(--color-black);
}

.form-section .container {
    max-width: 1140px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Left Content Styles */
.form-left-content {
    padding-right: 2rem;
}

.form-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: var(--color-white);
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 600;
}

.step-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.step-description {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    line-height: 1.5;
    margin: 0;
}

/* Form Styles */
.premium-form {
    padding: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-white);
}

.form-control {
    background-color: var(--color-white);
    border: none;
    color: #333;
    padding: 1.1rem 1.25rem;
    border-radius: 12px;
    width: 100%;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    background-color: var(--color-white);
    border: none;
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.2);
}

.form-control::placeholder {
    color: #999;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
}

select.form-control option {
    background-color: var(--color-white);
    color: #333;
}

/* Phone Group with Flag */
.phone-group {
    position: relative;
}

.phone-flag {
    color: green;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    z-index: 1;
}

.phone-group .form-control {
    padding-left: 3.5rem;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Loading State */
.btn-submit .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   METHODS SECTION
   =================================== */

.methods-section {
    padding: 100px 0;
    background-color: var(--color-black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.method-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: 0 20px 40px rgba(254, 0, 0, 0.2);
    background: rgba(254, 0, 0, 0.05);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-red) 0%, #b00000 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.method-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.method-description {
    font-size: 0.95rem;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* ===================================
   SERVICES CAROUSEL SECTION
   =================================== */

.services-section {
    padding: 100px 0;
    background-color: var(--color-black);
}

.services-section .container {
    max-width: 1000px;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Bootstrap Carousel with Fade Effect */
#servicesCarousel {
    position: relative;
}

#servicesCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#servicesCarousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

#servicesCarousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Custom Navigation Tabs */
.services-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-nav-btn .nav-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-nav-btn .nav-icon i {
    font-size: 1.2rem;
}

.service-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-nav-btn.active {
    background-color: var(--color-red);
    border-color: var(--color-red);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
}

.service-nav-btn.active .nav-icon {
    background-color: rgba(255, 255, 255, 0.3);
}

.service-card-content {
    display: flex;
    padding: 3rem 4rem;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.service-info {
    flex: 1;
}

.service-icon-card {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon-card i {
    font-size: 2rem;
    color: var(--color-red);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-black);
    font-weight: 500;
}

.service-features .bullet {
    width: 8px;
    height: 8px;
    background-color: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.service-images {
    display: flex;
    gap: 0.75rem;
}

.service-img-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 20px;
    flex-shrink: 0;
}



/* Services CTA Button */
.btn-services-cta {
    background-color: #16b011;
    color: var(--color-white);
    padding: 1.1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-services-cta:hover {
    background-color: #00a844;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    color: var(--color-white);
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits-section {
    padding: 100px 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-section .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.benefits-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.benefits-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-red);
    border-radius: 0 0 4px 4px;
}

.benefit-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefit-text:last-child {
    margin-bottom: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 100px 0;
    background-color: var(--color-black);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(254, 0, 0, 0.1);
    color: var(--color-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-light-gray);
    padding: 1.5rem;
    line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */

.footer-section {
    padding: 60px 0 30px;
    background-color: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-image {
    max-width: 180px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.btn-back-top {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-back-top:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--color-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav {
        gap: 1rem;
        margin-top: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-image {
        margin-bottom: 2rem;
    }

    .hero-content {
        text-align: center;
        margin-top: -120px;
    }

    .hero-img {
        max-width: 100%;
    }

    .form-left-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .form-main-title {
        font-size: 2rem;
        text-align: center;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .service-card-content {
        flex-direction: column;
    }

    .service-images {
        width: 100%;
        justify-content: center;
    }

    .services-carousel-nav {
        gap: 0.75rem;
    }

    .service-nav-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .service-nav-btn .nav-icon {
        width: 28px;
        height: 28px;
    }

    .service-nav-btn .nav-icon i {
        font-size: 1rem;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-content {
        padding: 2.5rem;
    }

    .benefit-highlight {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .premium-form {
        padding: 0;
    }

    .methods-section,
    .benefits-section,
    .faq-section,
    .form-section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .form-main-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .step-card {
        padding: 1.25rem;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        position: static;
        margin-bottom: 1rem;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-main-title {
        font-size: 1.5rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-carousel-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-nav-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.875rem 1rem;
    }

    .service-nav-btn .nav-label {
        font-size: 0.85rem;
    }

    .service-card-content {
        padding: 1.25rem;
        flex-direction: column;
    }

    .service-info {
        width: 100%;
    }

    .service-card-title {
        font-size: 1.25rem;
    }

    .service-card-description {
        font-size: 0.875rem;
    }

    .service-features li {
        font-size: 0.875rem;
    }

    .service-images {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .service-img-placeholder {
        width: 120px;
        height: 120px;
    }

    .btn-services-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .benefits-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .benefits-content {
        padding: 1.5rem;
    }

    .benefit-highlight {
        font-size: 1.1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .benefit-text {
        font-size: 1rem;
    }
}
