
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            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);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation-duration: 0.8s;
            animation-fill-mode: both;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c5364 0%, #203a43 50%, #0f2027 100%);
            color: white;
            padding: 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: fadeInDown 0.6s ease;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 15%;
  height: 15%;
}

.logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3ba99c 0%, #2d8a7f 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        header h1 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 10px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            transition: all 0.3s;
            border-radius: 5px;
            font-weight: 500;
        }

        nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Hero Section */
        .hero {
            background-image: url('/IMAGES/imagen\ \(11\).jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            padding: 80px 20px;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            padding: 20px;
            background-color: rgba(234, 224, 224);
            border-radius: 20px;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 800;
            color: #2f6880;
            animation: fadeInLeft 0.8s ease 0.2s both;
        }

        .hero .subtitle {
            font-size: 3.5rem;
            margin-bottom: 10px;
            font-weight: 900;
            background: linear-gradient(135deg, #427c95, #3cbfaf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInLeft 0.8s ease 0.4s both;
        }

        .hero .disclaimer {
            font-size: 1rem;
            margin-bottom: 30px;
            color: #0f0c0c;
            animation: fadeInLeft 0.8s ease 0.6s both;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #2d2727;
            animation: fadeInLeft 0.8s ease 0.8s both;
        }

        .hero-buttons {
            animation: fadeInLeft 0.8s ease 1s both;
        }

        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            animation: fadeInRight 0.8s ease 0.6s both;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #3ba99c 0%, #2d8a7f 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            margin: 10px 10px 10px 0;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(59, 169, 156, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(59, 169, 156, 0.6);
        }

        /* Simulator Section */
 .simulator-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.simulator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.simulator-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-circle {
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.simulator-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.simulator-container h1 {
    text-align: center;
    color: #2c5364;
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.simulator-container .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    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='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select:focus {
    outline: none;
    border-color: #3ba99c;
    background-color: white;
}

.results {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: #495057;
    font-weight: 500;
    font-size: 0.85rem;
}

.result-value {
    color: #2c5364;
    font-weight: 700;
    font-size: 1rem;
}

.result-value.highlight {
    font-size: 1.3rem;
    color: #3ba99c;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #3ba99c, transparent);
    margin: 15px 0;
}

@media (max-width: 968px) {
    .simulator-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .simulator-images {
        flex-direction: row;
        gap: 20px;
    }
    
    .image-circle {
        max-width: 250px;
    }
}

@media (max-width: 640px) {
    .simulator-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .simulator-container {
        padding: 25px;
    }
}
        /* About Section */
        .about-section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-section h2 {
            font-size: 2.5rem;
            color: #2c5364;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .about-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #555;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-text {
            padding: 20px;
        }

        .about-text h3 {
            font-size: 2rem;
            color: #2c5364;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            text-align: left;
            margin-bottom: 20px;
        }

        .about-image {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Trust Features */
        .trust-features {
            max-width: 1000px;
            margin: 60px auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            text-align: left;
            padding: 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3ba99c 0%, #2d8a7f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .feature-icon svg {
            stroke: white;
        }

        .feature-content h3 {
            margin: 0 0 8px 0;
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c5364;
        }

        .feature-content p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
            color: #666;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 20px;
            background: white;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5364;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .testimonials-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-color: #3ba99c;
        }

        .testimonial-stars {
            color: #ffc107;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: #2c5364;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #999;
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #2c5364 0%, #203a43 100%);
            padding: 80px 20px;
            position: relative;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            color: #FFF;
            position: relative;
            z-index: 1;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: #FFF;
            text-align: center;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 25px 20px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #FFF;
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
            min-width: 30px;
            text-align: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            color: #FFF;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 20px 25px 20px;
        }

        .faq-answer ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .faq-answer li {
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Services Section */
        .services-section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-section h2 {
            font-size: 2.5rem;
            color: #2c5364;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .services-section > p {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 50px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .card-services {
            background: white;
            padding: 0;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s;
            overflow: hidden;
        }

        .card-services:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .card-services:hover .card-image img {
            transform: scale(1.1);
        }

        .card-content {
            padding: 30px;
        }

        .card-services h3 {
            color: #2c5364;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card-services p {
            margin: 20px 0;
            line-height: 1.6;
            color: #666;
        }

        /* Steps Section */
        .prestamo-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .prestamo-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .prestamo-header h1 {
            font-size: 2.5rem;
            color: #2c5364;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .prestamo-header p {
            font-size: 1.2rem;
            color: #666;
        }

        .pasos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .paso-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .paso-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .paso-number {
            font-size: 3rem;
            font-weight: 800;
            color: #3ba99c;
            margin-bottom: 20px;
        }

        .paso-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #3ba99c 0%, #2d8a7f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .paso-card:hover .paso-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .paso-icon svg {
            width: 50px;
            height: 50px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .paso-card h3 {
            font-size: 1.4rem;
            color: #2c5364;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .paso-card p {
            color: #666;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 20px;
            background: white;
        }

        .creditea-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .creditea-card {
            background: linear-gradient(135deg, #a8dadc 0%, #b8e5e7 100%);
            border-radius: 30px;
            padding: 60px;
            margin-bottom: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .creditea-card.purple {
            background: linear-gradient(135deg, #d4c5e2 0%, #e5d9f0 100%);
        }

        .benefit-image {
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .benefit-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text-content h2 {
            font-size: 2.2rem;
            color: #1a1a1a;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .text-content p {
            font-size: 1.1rem;
            color: #2c2c2c;
            margin-bottom: 25px;
        }

        .benefits-list {
            list-style: none;
            margin-top: 20px;
        }

        .benefits-list li {
            font-size: 1.1rem;
            color: #2c2c2c;
            margin-bottom: 18px;
            padding-left: 30px;
            position: relative;
        }

        .benefits-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            font-size: 1.3rem;
            font-weight: bold;
            color: #2c5364;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c5364 0%, #0f2027 100%);
            color: white;
            padding: 60px 20px 30px;
            text-align: center;
        }

        footer h3 {
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        footer nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #3ba99c;
        }

        footer p {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0.8;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .hero-wrapper,
            .about-content,
            .creditea-card {
                grid-template-columns: 1fr;
            }

            .hero-image,
            .about-image {
                order: -1;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: fixed;
                top: 90px;
                right: -100%;
                width: 250px;
                height: calc(100vh - 90px);
                background: linear-gradient(180deg, #2c5364 0%, #203a43 100%);
                transition: right 0.3s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.3);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 30px 20px;
                gap: 0;
            }

            nav li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav a {
                display: block;
                padding: 15px 10px;
            }

            header h1 {
                font-size: 1rem;
            }

            .hero {
                padding: 60px 20px;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .btn {
                padding: 15px 30px;
                font-size: 1rem;
            }

            .simulator-container {
                padding: 30px 20px;
            }

            .about-section h2,
            .faq-title,
            .services-section h2,
            .prestamo-header h1,
            .testimonials-title {
                font-size: 1.8rem;
            }

            .creditea-card {
                padding: 30px 25px;
                border-radius: 20px;
            }

            .text-content h2 {
                font-size: 1.6rem;
            }

            .trust-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            footer nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
        .online-features-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.online-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 169, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.online-features-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 83, 100, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.online-features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.online-features-title {
    font-size: 2.5rem;
    color: #2c5364;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
}

.online-features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.online-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.online-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.online-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 169, 156, 0.1), transparent);
    transition: left 0.5s ease;
}

.online-feature-card:hover::before {
    left: 100%;
}

.online-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3ba99c;
}

.online-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3ba99c 0%, #2d8a7f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.online-feature-card:hover .online-feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px rgba(59, 169, 156, 0.4);
}

.online-feature-icon svg {
    stroke: white;
}

.online-feature-card h3 {
    font-size: 1.4rem;
    color: #2c5364;
    font-weight: 700;
    margin-bottom: 15px;
}

.online-feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .online-features-title {
        font-size: 1.8rem;
    }

    .online-features-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .online-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .online-feature-card {
        padding: 30px 25px;
    }

    .online-feature-card h3 {
        font-size: 1.2rem;
    }

    .online-feature-card p {
        font-size: 0.95rem;
    }
}
