        /* Main container and background */
        .main-container {
            min-height: 100vh;
            /*background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);*/
            background: #15afe7ff;
            color: white;
            display: flex;
            flex-direction: column;
        }

        /* Header styles */
        .logo-img {
            height: 2rem;
            width: auto;
        }

        @media (min-width: 768px) {
            .logo-img {
                height: 2.5rem;
            }
        }

        .nav-link {
            color: white !important;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .nav-link:hover {
            opacity: 0.8;
            color: white !important;
        }

        /* Content Grid */
        .content-container {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            padding: 3rem 1rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
            max-width: 800px;
        }

        @media (max-width: 767px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
        }

        /* Ghost Column */
        .ghost-column {
            width: 300px;
            height: 200px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-right: 25%;
        }

        @media (max-width: 767px) {
            .ghost-column {
                width: 100%;
                height: 250px;
                justify-content: center;
                margin-right: 0;
            }
        }

        /* Ghost Character */
        .ghost-character {
            width: 240px;
            height: 240px;
            position: relative;
            flex-shrink: 0;
        }

        @media (max-width: 767px) {
            .ghost-character {
                width: 200px;
                height: 200px;
            }
        }

       

        /* Text Column */
        .text-column {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            min-height: 200px;
        }

        @media (max-width: 767px) {
            .text-column {
                justify-content: center;
                min-height: auto;
                padding: 0 1rem;
            }
        }

        .typewriter-text {
            font-size: 2.5rem;
            font-weight: 300;
            white-space: nowrap;
            margin: 0;
            width: 500px;
            min-width: 500px;
        }

        @media (min-width: 992px) {
            .typewriter-text {
                font-size: 3rem;
                width: 600px;
                min-width: 600px;
            }
        }

        @media (max-width: 767px) {
            .typewriter-text {
                font-size: 2.8rem;
                width: 100%;
                min-width: auto;
                white-space: normal;
                text-align: center;
                line-height: 1.2;
            }
        }

        .typewriter-cursor {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Logo carousel */
        .logo-carousel-section {
            overflow: hidden;
            padding: 2rem 0;
            backdrop-filter: blur(10px);
        }

        .logo-carousel {
            display: flex;
            animation: scroll 20s linear infinite;
        }

        .logo-carousel:hover {
            animation-play-state: paused;
        }

        .logo-item {
            flex-shrink: 0;
            width: 5rem;
            height: 5rem;
            margin: 0 1rem;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
        }

        @media (min-width: 768px) {
            .logo-item {
                width: 6rem;
                height: 6rem;
            }
        }

        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

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