
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #000000;
            color: #ffffff;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        ::-webkit-scrollbar-thumb {
            background: #14b8a6;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #0f766e;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #14b8a6, #10b981);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(20, 184, 166, 0.25);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #d1d5db;
            text-align: center;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlight {
            color: #14b8a6;
        }

        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .card {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(75, 85, 99, 0.5);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: rgba(20, 184, 166, 0.5);
            transform: translateY(-5px);
        }

        /* Navigation */
        .navbar {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #374151;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #14b8a6;
            margin-right: auto;
        }

        .logo .highlight {
            color: white;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin-left: auto;
        }

        .nav-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links a:hover {
            color: #14b8a6;
            transform: translateY(-2px);
        }

        .nav-links a i {
            width: 18px;
            height: 18px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            margin-left: 1rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                padding: 1rem 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid #374151;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                padding: 0.5rem 0;
            }

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

        /* Home Banner Styles */
        .home-banner {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background-color: #000;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .home-banner .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

       .home-banner .banner-content {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1400px; /* Set a maximum width */
            margin: 0 1%; /* Center the content */
            padding: 20px;
        }

       .home-banner .banner-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 70%;
            gap: 10px;
        }

        .home-banner .person-container {
            flex: 0 0 25%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
            position: relative;
            margin: 0 15px;
        }

        .home-banner .person-img {
            height: auto;
            min-height: 70%;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
            transition: all 0.5s ease;
        }

        .home-banner .person-img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
        }

        .home-banner .person-name {
            /* margin-top: 1rem; */
            background: rgba(0, 0, 0, 0.8);
            padding: 10px;
            color: #00ffaa;
            font-size: 1.3rem;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
            border: 2px solid rgba(0, 255, 255, 0.3);
            border-top-left-radius: 30px;
            border-bottom-right-radius: 30px;
            width: 80%;
            text-align: center;
            z-index: 10;
        }

        .home-banner .person-title {
            display: block;
            font-size: 1rem;
            color: #00aaff;
            font-weight: 400;
        }

        .home-banner .center-content {
            flex: 1; /* Take remaining space */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 30px;
            min-width: 300px; /* Prevent too much squeezing */
        }

        .home-banner .blur-bg {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
            margin: 2rem 0;
            width: 100%;
        }

        .home-banner .main-text {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #00ffaa, #00aaff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            text-align: center;
        }

        .home-banner .sub-text {
            font-size: 1.5rem;
            color: #fff;
            margin-top: 1rem;
            text-align: center;
        }

        .home-banner .quote-text {
            font-style: italic;
            color: #aaa;
            margin-top: 1rem;
            font-size: 1rem;
            text-align: center;
        }

       .home-banner .join-btn {
            background: transparent;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            align-self: center;
            z-index: 1;
            border: none;
            border-top-left-radius: 30px;
            border-bottom-right-radius: 30px;
            
            /* Gradient border simulation */
            background: 
                linear-gradient(#000, #000) padding-box,
                linear-gradient(45deg, #00ffaa, #00aaff) border-box;
            border: 2px solid transparent;
        }

        .home-banner .join-btn:hover {
            background: 
                linear-gradient(rgba(0, 255, 170, 0.1), rgba(0, 255, 170, 0.1)) padding-box,
                linear-gradient(45deg, #00ffaa, #00aaff) border-box;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .home-banner .join-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
            transition: 0.5s;
            border-top-left-radius: 30px;
            border-bottom-right-radius: 30px;
            z-index: -1;
        }

        .home-banner .join-btn:hover::before {
            left: 100%;
        }

        .home-banner .logo {
            height: 40px;
            filter: brightness(0) invert(1);
            margin-top: 2rem;
        }

        /* Floating shapes */
        .home-banner .shape {
            position: absolute;
            opacity: 0.3;
            z-index: 1;
        }

        .home-banner .circle {
            border-radius: 50%;
            background: linear-gradient(45deg, #00ffaa, #00aaff);
        }

        .home-banner .triangle {
            width: 0;
            height: 0;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-bottom: 50px solid #00aaff;
        }

        .home-banner .rectangle {
            background: linear-gradient(45deg, #00ffaa, #00aaff);
            transform: rotate(45deg);
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) scale(1.1);
                opacity: 0.5;
            }
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0.2;
            }
            50% {
                opacity: 0.6;
            }
        }

        .home-banner .shape {
            animation: float 8s ease-in-out infinite, fadeInOut 6s ease-in-out infinite;
        }

        .home-banner .shape:nth-child(2n) {
            animation-delay: 1s;
        }

        .home-banner .shape:nth-child(3n) {
            animation-delay: 2s;
        }

        .home-banner .shape:nth-child(4n) {
            animation-delay: 3s;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .home-banner .banner-row {
                flex-direction: column;
                height: auto;
                padding-top: 80px;
                gap: 30px;
            }
            
            .home-banner .person-container {
                width: 100%;
                margin: 0 auto;
                order: 1; /* Show person first */
                height: auto;
            }
            
            /* Hide right person on mobile */
            .home-banner .person-container:last-child {
                display: none;
            }
            
            .home-banner .center-content {
                order: 2; /* Show content after person */
                width: 100%;
                padding: 0 20px;
                margin-bottom: 30px;
            }
            
            .home-banner .main-text {
                font-size: 2rem;
            }
            
            .home-banner .sub-text {
                font-size: 1.25rem;
            }
            
            .home-banner .person-img {
                height: 250px;
                min-height: auto;
                margin-bottom: 15px;
            }
            
            .home-banner .person-name {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .home-banner {
                height: auto;
                min-height: 100vh;
                padding: 60px 0;
            }
            
            .home-banner .banner-content {
                padding: 0 15px;
            }
            
            .home-banner .main-text {
                font-size: 1.75rem;
            }
            
            .home-banner .sub-text {
                font-size: 1rem;
            }
            
            .home-banner .blur-bg {
                padding: 1.5rem;
            }
            
            .home-banner .person-img {
                height: 220px;
            }
            
            .home-banner .join-btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1f2937 0%, #000000 50%, #1f2937 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1), transparent 70%);
            opacity: 0.1;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
            padding-top: 80px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #d1d5db;
            margin-bottom: 3rem;
        }

        .mentors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .mentor-card {
            background: rgba(31, 41, 55, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(75, 85, 99, 0.5);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .mentor-card:hover {
            border-color: rgba(20, 184, 166, 0.5);
        }

        .mentor-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #14b8a6, #10b981);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .mentor-avatar::before {
            content: '';
            position: absolute;
            inset: 4px;
            background: #374151;
            border-radius: 50%;
        }

        .mentor-name {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .mentor-role {
            color: #14b8a6;
            margin-bottom: 0.5rem;
        }

        .mentor-desc {
            color: #d1d5db;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .stars {
            display: flex;
            color: #fbbf24;
        }

        /* Ticker */
        .ticker {
            background: rgba(20, 184, 166, 0.1);
            border-top: 1px solid rgba(20, 184, 166, 0.2);
            border-bottom: 1px solid rgba(20, 184, 166, 0.2);
            overflow: hidden;
            padding: 1rem 0;
        }

        .ticker-content {
            display: flex;
            animation: scroll 30s linear infinite;
            white-space: nowrap;
        }

        .ticker-item {
            color: #14b8a6;
            font-weight: 500;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .ticker-dot {
            width: 8px;
            height: 8px;
            background: #14b8a6;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Schedule Table */
        .schedule-table {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid #374151;
            border-radius: 16px;
            overflow: hidden;
        }

        .schedule-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .schedule-table th {
            background: rgba(31, 41, 55, 0.5);
            color: #14b8a6;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
        }

        .schedule-table td {
            padding: 1rem;
            border-top: 1px solid #374151;
        }

        .schedule-table tr:hover {
            background: rgba(31, 41, 55, 0.3);
        }

        .schedule-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.875rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: none;

            /* Matching border-radius */
            border-top-left-radius: 30px;
            border-bottom-right-radius: 30px;

            /* Gradient border technique */
            background:
                linear-gradient(#000, #000) padding-box,
                linear-gradient(45deg, #00ffaa, #00aaff) border-box;
            border: 2px solid transparent;

            transition: all 0.3s ease;
        }

        .schedule-btn:hover {
            background:
                linear-gradient(rgba(0, 255, 170, 0.1), rgba(0, 255, 170, 0.1)) padding-box,
                linear-gradient(45deg, #00ffaa, #00aaff) border-box;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .schedule-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.4), transparent);
            transition: 0.5s;
            border-top-left-radius: 30px;
            border-bottom-right-radius: 30px;
            z-index: -1;
        }

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

        /* Testimonials */
        .testimonial-card {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(75, 85, 99, 0.5);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: #14b8a6;
            opacity: 0.5;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            font-size: 1.125rem;
            color: #d1d5db;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .author-info h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .author-role {
            color: #14b8a6;
        }

        .author-company {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .pagination-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #4b5563;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .dot.active {
            background: #14b8a6;
        }

        /* FAQ */
        .faq-item {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid #374151;
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(31, 41, 55, 0.3);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #d1d5db;
            border-top: 1px solid #374151;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* Footer */
        .footer {
            background: #1f2937;
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-info {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-info svg {
            color: #14b8a6;
            margin-top: 0.25rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #d1d5db;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            background: #374151;
            border: 1px solid #4b5563;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #14b8a6;
            box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #374151;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(20, 184, 166, 0.2);
            color: #14b8a6;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

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

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

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }

        .whatsapp-chat {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            padding: 1.5rem;
            max-width: 300px;
            margin-bottom: 1rem;
            display: none;
        }

        .whatsapp-chat.active {
            display: block;
            animation: slideUp 0.3s ease;
        }

        .whatsapp-chat h3 {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .whatsapp-chat p {
            color: #4b5563;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .start-chat-btn {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .start-chat-btn:hover {
            background: #22c55e;
        }

        .close-chat {
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .mentors-grid {
                grid-template-columns: 1fr;
            }

            .schedule-table {
                overflow-x: auto;
            }

            .schedule-table table {
                min-width: 600px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .floating-whatsapp {
                bottom: 1rem;
                right: 1rem;
            }

            .whatsapp-chat {
                max-width: 280px;
            }

            /* Home Banner Responsive */
            .home-banner .person-container {
                height: 350px;
                margin: 0 20px;
            }
            
            .home-banner .main-text {
                font-size: 2rem;
            }
            
            .home-banner .sub-text {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section {
                padding: 60px 0;
            }

            .card {
                padding: 1.5rem;
            }

            /* Home Banner Responsive */
            .home-banner .person-container {
                height: 300px;
                margin: 0 10px;
            }
            
            .home-banner .main-text {
                font-size: 1.75rem;
            }
            
            .home-banner .blur-bg {
                padding: 1.5rem;
            }
        }
