        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
            padding-top: 140px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(5, 191, 219, 0.3) 0%, transparent 70%);
            top: -400px;
            right: -400px;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            bottom: -300px;
            left: -300px;
            animation: pulse 10s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-section h1 {
            color: #FFFFFF;
            margin-bottom: 2rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-section p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-cta {
            margin-top: 1rem;
            display: inline-block;
            background: #FFFFFF !important;
            color: var(--primary) !important;
        }

        .hero-cta:hover {
            background: var(--light) !important;
            color: var(--primary) !important;
        }

        .hero-cta::before {
            display: none;
        }

        .hero-cta span {
            color: var(--primary);
        }

        .overview {
            background: var(--light);
            position: relative;
        }

        .feature-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 2rem 0;
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .feature-table thead {
            background: var(--gradient-1);
        }

        .feature-table thead th {
            padding: 20px;
            color: #FFFFFF;
            font-weight: 700;
            text-align: left;
            font-size: 1.1rem;
        }

        .feature-table tbody tr {
            transition: all 0.3s ease;
        }

        .feature-table tbody tr:hover {
            background: var(--light);
            transform: scale(1.01);
        }

        .feature-table tbody td {
            padding: 18px 20px;
            border-bottom: 1px solid rgba(5, 191, 219, 0.1);
            color: var(--dark);
        }

        .feature-table tbody tr:last-child td {
            border-bottom: none;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 2rem 0;
        }

        .table-responsive table {
            margin: 0;
        }

        @media (max-width: 768px) {
            .feature-table {
                font-size: 0.9rem;
                min-width: 100%;
            }

            .feature-table thead th,
            .feature-table tbody td {
                padding: 12px 10px;
                white-space: nowrap;
            }

            .table-responsive {
                -webkit-overflow-scrolling: touch;
                scrollbar-width: thin;
            }

            .table-responsive::-webkit-scrollbar {
                height: 8px;
            }

            .table-responsive::-webkit-scrollbar-track {
                background: var(--light);
            }

            .table-responsive::-webkit-scrollbar-thumb {
                background: var(--secondary);
                border-radius: 4px;
            }
        }

        @media (max-width: 430px) {
            .feature-table {
                font-size: 0.85rem;
            }

            .feature-table thead th,
            .feature-table tbody td {
                padding: 10px 8px;
            }
        }

        .timeline {
            background: #FFFFFF;
        }

        .timeline-item {
            position: relative;
            padding-left: 50px;
            margin-bottom: 50px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 20px;
            height: 20px;
            background: var(--gradient-2);
            border-radius: 50%;
            box-shadow: var(--shadow-md);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 28px;
            width: 2px;
            height: calc(100% + 30px);
            background: var(--gradient-2);
            opacity: 0.3;
        }

        .timeline-item:last-child::after {
            display: none;
        }

        .timeline-item h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .timeline-item {
                padding-left: 35px;
            }

            .timeline-item::before {
                width: 15px;
                height: 15px;
            }

            .timeline-item::after {
                left: 6.5px;
            }
        }

        .feature-blocks {
            background: var(--light);
        }

        .feature-block {
            background: #FFFFFF;
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            border-left: 4px solid var(--accent);
        }

        .feature-block:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
            border-left-color: var(--secondary);
        }

        .feature-block h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .feature-block {
                padding: 25px;
            }
        }

        .cards-grid-2 {
            background: #FFFFFF;
        }

        .cards-grid-2 .container > p {
            margin-bottom: 3rem;
        }

        .card {
            background: #FFFFFF;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            margin-bottom: 40px;
            border: none;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card:hover img {
            transform: scale(1.1);
        }

        .card h3, .card p, .card ul {
            padding: 0 30px;
        }

        .card h3 {
            margin-top: 30px;
            color: var(--primary);
        }

        .card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .card ul li {
            padding: 10px 0;
            border-bottom: 1px solid var(--light);
            color: rgba(0, 29, 61, 0.85);
        }

        .card ul li:last-child {
            border-bottom: none;
        }

        .card ul li strong {
            color: var(--secondary);
            font-weight: 700;
        }

        @media (min-width: 768px) {
            .cards-grid-2 .container {
                display: grid;
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cards-grid-2 .container > h2,
            .cards-grid-2 .container > p {
                grid-column: 1 / -1;
            }
        }

        @media (min-width: 1024px) {
            .cards-grid-2 .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .accordion {
            background: var(--light);
        }

        .accordion-item {
            background: #FFFFFF;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: var(--shadow-md);
        }

        .accordion-header {
            width: 100%;
            padding: 25px 30px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            min-height: 44px;
            box-sizing: border-box;
        }

        .accordion-header::after {
            content: '+';
            font-size: 2rem;
            color: var(--secondary);
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .accordion-header[aria-expanded="true"]::after {
            transform: rotate(45deg);
        }

        .accordion-header:hover {
            background: var(--light);
        }

        .accordion-header h3 {
            margin: 0;
            color: var(--primary);
            font-size: 1.4rem;
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 30px;
        }

        .accordion-body.active {
            max-height: 1000px;
            padding: 0 30px 25px;
        }

        .accordion-body p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .accordion-header {
                padding: 20px;
            }

            .accordion-header h3 {
                font-size: 1.1rem;
            }

            .accordion-body {
                padding: 0 20px;
            }

            .accordion-body.active {
                padding: 0 20px 20px;
            }
        }

        .text-block {
            background: #FFFFFF;
        }

        .text-block ul {
            list-style: none;
            margin: 2rem 0;
        }

        .text-block ul li {
            padding: 12px 0 12px 30px;
            position: relative;
            color: rgba(0, 29, 61, 0.85);
        }

        .text-block ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20px;
            width: 10px;
            height: 10px;
            background: var(--gradient-2);
            border-radius: 50%;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 2rem 0;
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .comparison-table thead {
            background: var(--gradient-1);
        }

        .comparison-table thead th {
            padding: 18px 15px;
            color: #FFFFFF;
            font-weight: 700;
            text-align: left;
            font-size: 1rem;
        }

        .comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .comparison-table tbody tr:hover {
            background: var(--light);
        }

        .comparison-table tbody td {
            padding: 16px 15px;
            border-bottom: 1px solid rgba(5, 191, 219, 0.1);
            color: var(--dark);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .comparison-table {
                font-size: 0.85rem;
                min-width: 100%;
            }

            .comparison-table thead th,
            .comparison-table tbody td {
                padding: 10px 8px;
                white-space: nowrap;
            }

            .comparison-table-wrapper {
                width: 100%;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                margin: 2rem 0;
            }
        }

        @media (max-width: 430px) {
            .comparison-table {
                font-size: 0.8rem;
            }

            .comparison-table thead th,
            .comparison-table tbody td {
                padding: 8px 6px;
            }
        }

        .payment-methods img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .payment-methods img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .cta-section {
            background: var(--gradient-1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(5, 191, 219, 0.3) 0%, transparent 70%);
            top: -300px;
            right: -300px;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.2) 0%, transparent 70%);
            bottom: -250px;
            left: -250px;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            color: #FFFFFF;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .cta-section a:not(.btn-primary) {
            color: var(--accent);
            text-decoration: underline;
        }

        .cta-section a:not(.btn-primary):hover {
            color: var(--success);
        }

        .text-block h3 {
            color: var(--primary);
            margin-top: 3rem;
        }

        @media (max-width: 768px) {
            .text-block h3 {
                margin-top: 2rem;
            }

            .hero-section {
                padding-top: 100px;
            }

            .hero-cta {
                margin-top: 0.5rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .cta-section p {
                font-size: 1rem;
            }

            img {
                max-width: 100%;
                height: auto;
            }

            * {
                max-width: 100%;
                box-sizing: border-box;
            }
        }

        @media (max-width: 430px) {
            .hero-section {
                padding-top: 100px;
                min-height: auto;
                padding-bottom: 40px;
            }

            .hero-cta {
                margin-top: 0.5rem;
            }

            .hero-section h1 {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .hero-section p {
                font-size: 0.95rem;
            }

            .card {
                margin-bottom: 30px;
            }

            .card h3, .card p, .card ul {
                padding: 0 20px;
            }
        }

        @media (max-width: 320px) {
            .hero-section h1 {
                font-size: 1.5rem;
            }

            .hero-section p {
                font-size: 0.9rem;
            }

            .card h3, .card p, .card ul {
                padding: 0 15px;
            }
        }

        main {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        section {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }