
        body {
            font-family: 'Google Sans', Roboto, Arial, sans-serif;
            margin: 0;
            background-color: #ffffff;
            color: #202124;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            border-bottom: 1px solid #dadce0;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-container img#meet-logo { /* Убрали span, если логотип это только картинка */
            width: 120px; /* Ширина вашего logo.png */
            height: auto; 
            /* Если нужен текст "Google Meet" рядом, его нужно вернуть и стилизовать */
        }

        .date-time-container {
            font-size: 14px;
            color: #5f6368;
        }

        main {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        .hero {
            display: flex;
            align-items: flex-start; 
            justify-content: space-around;
            width: 100%;
            max-width: 1100px; 
            margin-top: 40px; 
            margin-bottom: 50px; 
            gap: 40px;
        }

        .hero-content-left {
            flex-basis: 60%; 
            max-width: 580px; 
        }

        .hero-content-left h1 {
            font-size: 44px;
            font-weight: 500; 
            line-height: 52px;
            margin-bottom: 16px;
            color: #202124;
        }

        .hero-content-left p {
            font-size: 18px;
            line-height: 26px;
            color: #5f6368;
            margin-bottom: 32px;
        }

        .join-button { 
            background-color: #1a73e8;
            color: white;
            border: none;
            border-radius: 20px; 
            padding: 10px 24px; 
            font-size: 15px; 
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center; 
            gap: 8px;
            height: 40px; 
            box-sizing: border-box;
            text-decoration: none; 
        }
        .join-button:hover {
            background-color: #1869cf; 
        }
        .join-button svg {
            width: 20px; 
            height: 20px;
            fill: currentColor;
        }

        .learn-more {
            display: block;
            margin-top: 24px; 
            color: #1a73e8;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }
        .learn-more:hover {
            text-decoration: underline;
        }

        .hero-content-right { /* Блок со слайдером */
            flex-basis: 40%; 
            max-width: 260px; 
            display: flex;
            flex-direction: column;
            align-items: center; 
            position: relative; 
        }
        
        .slider-wrapper { 
            width: 100%;
            position: relative; 
            margin-bottom: 16px; 
        }
        .slider-container {
            width: 100%;
            overflow: hidden; 
            border-radius: 8px; 
        }
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }
        .slide img {
            width: 100%;
            display: block;
        }
        .slider-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            background-color: transparent; border: none; border-radius: 0;             
            padding: 8px; font-size: 30px; font-weight: bold;            
            color: #5f6368; cursor: pointer; display: flex; 
            align-items: center; justify-content: center;
            box-shadow: none; z-index: 10; line-height: 1; 
        }
        .prev-slide { left: -35px; }
        .next-slide { right: -35px; }
        
        .slider-invitation-text {
            width: 100%; text-align: left;
            margin-bottom: 16px; box-sizing: border-box;
        }
        .slider-invitation-text h2 {
            font-size: 18px; font-weight: 500; color: #202124;
            margin-top: 0; margin-bottom: 8px;
        }
        .slider-invitation-text p {
            font-size: 14px; color: #5f6368; line-height: 1.5;
        }
        .slider-controls { 
            position: relative; display: flex;
            justify-content: center; gap: 8px; width: 100%; 
        }
        .slider-controls .dot {
            width: 8px; height: 8px; border-radius: 50%;
            background-color: #bdc1c6; cursor: pointer;
            border: none; padding: 0;
        }
        .slider-controls .dot.active { background-color: #1a73e8; }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 900px) { /* Начинаем изменения для планшетов и мобильных */
            .hero {
                flex-direction: column; /* Блоки друг под другом */
                align-items: center;    /* Центрируем блоки в колонке */
                text-align: center;     /* Центрируем текст внутри блоков */
                margin-top: 20px;
                margin-bottom: 30px;
                gap: 30px;
            }
            .hero-content-left { /* Текст и кнопка */
                order: 1; /* <<< БУДЕТ ВВЕРХУ */
                max-width: 100%; 
                width:100%; /* Занимает всю доступную ширину */
            }
            .hero-content-right { /* Слайдер и текст под ним */
                order: 2; /* <<< БУДЕТ ВНИЗУ */
                max-width: 320px; /* Можно чуть шире на мобильных, если нужно */
                width: 100%; 
            }
             .slider-invitation-text { 
                text-align: center; 
             }
            .hero-content-left h1 {
                font-size: 32px; 
                line-height: 40px;
            }
            .hero-content-left p {
                font-size: 16px;
            }
             .prev-slide { left: -15px; font-size: 24px;} /* Стрелки ближе */
             .next-slide { right: -15px; font-size: 24px;}
        }

        @media (max-width: 600px) {
            header {
                padding: 10px 16px;
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            .logo-container img#meet-logo {
                 width: 100px; 
            }
            .date-time-container {
                font-size: 13px;
            }
            .hero-content-left h1 {
                font-size: 28px; /* Еще немного уменьшаем для совсем маленьких экранов */
                line-height: 36px;
            }
             .join-button {
                font-size: 14px;
                padding: 8px 18px;
                height: 36px;
                border-radius: 18px; 
            }
            .slider-invitation-text h2 {
                font-size: 16px;
            }
            .slider-invitation-text p {
                font-size: 13px;
            }
            .hero-content-right { 
                max-width: calc(100% - 30px); /* Чтобы стрелки не прилипали к краям */
            }
            .prev-slide { left: 0px; } /* Стрелки у краев слайдера */
            .next-slide { right: 0px; }
        }
