        /* Reset CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
        }

        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            height: 40px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 25px;
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            display: block;
            padding: 5px 0;
        }

        .nav-menu a:hover {
            color: #f47920;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s;
            z-index: 10;
            border-radius: 5px;
            padding: 10px 0;
        }

        .nav-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu a {
            padding: 8px 20px;
        }

        .dropdown-menu a:hover {
            background-color: #f8f8f8;
        }

        .header-right {
            display: flex;
            align-items: center;
        }

        .search-box {
            position: relative;
            margin-right: 20px;
        }

        .search-box input {
            padding: 8px 15px 8px 35px;
            border-radius: 20px;
            border: 1px solid #ddd;
            outline: none;
            font-size: 14px;
            width: 200px;
            transition: all 0.3s;
        }

        .search-box input:focus {
            width: 250px;
            border-color: #f47920;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .contact-button {
            background-color: #f47920;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.25s ease-out;
            display: inline-block;
        }

        .contact-button:hover {
            background-color: #e06a10;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: #333;
            transition: all 0.3s;
        }

        /* Hero Section with Slider */
        .hero-section {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(244 121 32 / 46%), rgb(241 90 36 / 25%));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.25s ease-out;
            display: inline-block;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-primary {
            background-color: white;
            color: #f47920;
        }

        .btn-primary:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
        }

        .prev-slide {
            left: 20px;
        }

        .next-slide {
            right: 20px;
        }

        .prev-slide,
        .next-slide {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .prev-slide:hover,
        .next-slide:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: white;
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #777;
        }

        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #aaa;
        }

        .breadcrumb a {
            color: #777;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #f47920;
        }

        .breadcrumb li:last-child {
            color: #f47920;
            font-weight: 500;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #f47920;
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Packages Section */
        .packages {
            padding: 60px 0;
            background-color: #fff;
        }

        .package-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-button {
            padding: 10px 20px;
            background-color: #f5f5f5;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }

        .filter-button:hover,
        .filter-button.active {
            background-color: #f47920;
            color: white;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .package-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e9ecef;
            cursor: pointer;
        }

        .package-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .package-header {
            background-color: #f8f8f8;
            padding: 20px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .package-name {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 5px;
        }

        .package-subtitle {
            color: #666;
            font-size: 0.9rem;
        }

        .package-tag {
            position: absolute;
            top: 0;
            right: 0;
            background-color: #f47920;
            color: white;
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: bold;
            border-bottom-left-radius: 10px;
        }

        .package-body {
            padding: 20px;
            overflow-y: scroll;
            height: 450px;
        }

        .package-price {
            font-size: 2rem;
            font-weight: bold;
            color: #f47920;
            margin-bottom: 20px;
            display: flex;
            align-items: baseline;
        }

        .price-period {
            font-size: 1rem;
            color: #666;
            margin-left: 5px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .package-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .feature-icon {
            color: #f47920;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .package-footer {
            padding: 0 20px 20px;
        }

        .package-button {
            display: block;
            width: 100%;
            padding: 12px;
            text-align: center;
            background-color: #f47920;
            color: white;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.25s ease-out;
            cursor: pointer;
        }

        .package-button:hover {
            background-color: #e06a10;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Benefits Section */
        .benefits {
            padding: 60px 0;
            background-color: #f8f8f8;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background-color: #fff2e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #f47920;
            font-size: 2rem;
        }

        .benefit-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #333;
        }

        .benefit-description {
            color: #666;
        }

        /* Process Section */
        .process {
            padding: 60px 0;
            background-color: #fff;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-steps::before {
            content: "";
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #eee;
            z-index: 1;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 25%;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: #f47920;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #333;
        }

        .step-description {
            font-size: 0.9rem;
            color: #666;
        }

        /* FAQ Section */
        .faq {
            padding: 60px 0;
            background-color: #f8f8f8;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: #fff;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: #333;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #f9f9f9;
        }

        .faq-question.active {
            background-color: #f47920;
            color: white;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
            border-top: 1px solid #eee;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .faq-question.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #f47920, #f15a24);
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .primary-button {
            background-color: white;
            color: #f47920;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.25s ease-out;
            display: inline-block;
            cursor: pointer;
        }

        .primary-button:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: #222;
            color: #fff;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #f47920;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #f47920;
        }

        .footer-contact p {
            color: #bbb;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-icon {
            margin-right: 10px;
            color: #f47920;
            min-width: 20px;
        }

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

        .social-link {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
            color: white;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background-color: #f47920;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #bbb;
            font-size: 0.9rem;
        }

        /* Registration Form Modal */
        .modal-overlay {
            position: fixed;
            top: 170%;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .modal-overlay.active {
            top: 0;
            opacity: 1;
            visibility: visible;
        }

        .step-template {
            width: 100%;
            opacity: 0;
            display: none;
            height: 0;
            visibility: hidden;
        }

        .step-template.active {
            display: flex;
            opacity: 1;
            height: 100%;
            visibility: visible;
        }

        .registration-modal {
            background-color: #fff;
            border-radius: 10px;
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-logo {
            height: 40px;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: #f47920;
        }

        .modal-body {
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
        }

        .registration-steps {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 30px;
            position: relative;
        }

        .registration-steps::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #eee;
            z-index: 1;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 33.33%;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: #777;
            font-size: 1.2rem;
            position: relative;
        }

        .step.active .step-icon {
            background-color: #f47920;
            color: white;
        }

        .step-label {
            font-size: 0.9rem;
            color: #777;
            text-align: center;
        }

        .step.active .step-label {
            color: #f47920;
            font-weight: 500;
        }

        .registration-form {
            width: 60%;
            padding-right: 30px;
        }

        .order-summary {
            width: 40%;
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 20px;
        }

        .form-section {
            margin-bottom: 30px;
            width: 100%;
        }

        .form-section-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .form-label.required::after {
            content: " *";
            color: #f47920;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
        }

        .form-control:focus {
            outline: none;
            border-color: #f47920;
            box-shadow: 0 0 0 0.2rem rgba(244, 121, 32, 0.25);
        }

        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }

        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
        }

        .form-textarea:focus {
            outline: none;
            border-color: #f47920;
            box-shadow: 0 0 0 0.2rem rgba(244, 121, 32, 0.25);
        }

        .summary-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #333;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .summary-section {
            margin-bottom: 20px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        #packageMonth {
            padding: 6px 10px;
            border: 1px solid #eee;
        }

        .summary-label {
            color: #777;
        }

        .summary-value {
            font-weight: 500;
            color: #333;
        }

        .summary-value.empty {
            color: #ccc;
        }

        .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-top: 2px solid #eee;
            margin-top: 20px;
        }

        .total-label {
            font-weight: 500;
            color: #333;
        }

        .total-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f47920;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .btn-back {
            padding: 12px 25px;
            background-color: #eee;
            color: #777;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-back:hover {
            background-color: #ddd;
        }

        .btn-continue {
            padding: 12px 25px;
            background-color: #f47920;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-continue:hover {
            background-color: #e06a10;
        }

        .btn-confirm {
            padding: 12px 25px;
            background-color: #f47920;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            /* opacity: 0;
            visibility: hidden; */
        }

        .btn-confirm:hover {
            background-color: #e06a10;
        }

        .btn-confirm.active {
            opacity: 1;
            visibility: visible;
        }

        .hoamang {
            display: none;
        }

        /* Contact Buttons */
        .contact-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 1000;
        }

        .btn-phone,
        .btn-zalo {
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s;
        }

        .btn-phone {
            background: #28a745;
            color: white;
        }

        .btn-zalo {
            background: #0084ff;
            color: white;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s;
                padding: 0;
            }

            .nav-menu li:hover .dropdown-menu {
                max-height: 500px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .mobile-menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-toggle.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .mobile-menu-toggle.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .search-box {
                display: none;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons a {
                width: 80%;
                margin-bottom: 10px;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
            }

            .process-steps::before {
                display: none;
            }

            .process-step {
                width: 100%;
                margin-bottom: 30px;
            }

            .registration-form,
            .order-summary {
                width: 100%;
                padding-right: 0;
            }

            .registration-form {
                margin-bottom: 30px;
            }

            .modal-body {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .contact-button {
                margin-right: 15px;
            }

            .step-template {
                display: block !important;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

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

            .section-title h2 {
                font-size: 1.8rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .registration-steps {
                flex-direction: column;
                align-items: flex-start;
            }

            .registration-steps::after {
                display: none;
            }

            .step {
                width: 100%;
                flex-direction: row;
                margin-bottom: 15px;
            }

            .step-icon {
                margin-right: 15px;
                margin-bottom: 0;
            }
        }

        /* Icons */
        .icon {
            display: inline-block;
            width: 1em;
            height: 1em;
            stroke-width: 0;
            stroke: currentColor;
            fill: currentColor;
            vertical-align: middle;
        }