        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
        }

        .hero-container {
            position: relative;
            /* height: 100vh; */
            height: 92vh;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* max-height: 750px; */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: all 1s ease-in-out;
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.788);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
        }

        .text-content {
            color: white;
            animation: fadeIn 0.8s ease-out;
        }

        .subtitle {
            font-size: 1.125rem;
            font-weight: 500;
            opacity: 0.9;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .title {
            font-size: 4rem;
            font-weight: bold;
            line-height: 1.1;
            color: green;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .description {
            font-size: 1.25rem;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 32rem;
        }

        .button-group {
            display: flex;
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-align: center;
            padding: 20px 30px;
            font-size: 1.125rem;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: green;
            color: white;
        }

        .btn-primary:hover {
            background: #f3f4f6;
            transform: scale(1.05);
            color: green;
        }

        .btn-secondary {
            background: white;
            color: green;
        }

        .btn-secondary:hover {
            background: white;
            color: green;
            transform: scale(1.05);
        }

        .image-container {
            position: relative;
            animation: scaleIn 0.8s ease-out;
        }

        .hero-image {
            position: relative;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: rotate(3deg);
            transition: transform 0.5s ease;
            overflow: hidden;
        }

        .hero-image:hover {
            transform: rotate(0deg);
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            animation: pulse 3s ease-in-out infinite;
        }

        .floating-1 {
            top: -1rem;
            right: -1rem;
            width: 6rem;
            height: 6rem;
            background: rgba(255, 255, 255, 0.2);
        }

        .floating-2 {
            bottom: -1rem;
            left: -1rem;
            width: 8rem;
            height: 8rem;
            background: rgba(255, 255, 255, 0.1);
            animation-delay: 1s;
        }

        .navigation {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            color: white;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .indicators {
            display: flex;
            gap: 0.75rem;
        }

        .indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.25);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.75);
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 20;
        }

        .progress-fill {
            height: 100%;
            background: white;
            width: 0%;
            transition: width 0.3s ease;
        }

        .icon {
            width: 1rem;
            height: 1rem;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                /* padding-top: 200px; */

                gap: 2rem;
            }
            .hero-container{
                height: auto;
            }
            .hero-content {
                padding-bottom: 80px;
            }

            .title {
                font-size: 36px;
            }
            .description {
            font-size: 18px;
            opacity: 0.9;
            line-height: 1.3;
            margin-bottom: 2rem;
            max-width: 32rem;
        }

            .button-group {
                flex-direction: column;
            }
            .btn {
            
            text-align: center;
            padding: 10px 30px;
            font-size: 1.125rem;
            
            cursor: pointer;
            border: none;
        }


            .hero-image img {
                height: 300px;
            }
        }

        @media (min-width: 640px) {
            .button-group {
                flex-direction: row;
            }
        }