* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            /* Темный фон для всего сайта */
            background-color: #1a1a1a;
            /* Светлый текст для контраста */
            color: #e0e0e0;
            line-height: 1.6;
        }

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

        header {
            /* Очень темный фон для шапки */
            background: linear-gradient(135deg, #0d0d0d, #000000);
            color: white;
            padding: 20px 0;
            /* Более темная тень */
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }

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

        .logo {
            font-size: 28px;
            font-weight: bold;
        }

        .logo span {
            /* Сохраняем яркий акцентный цвет */
            color: #fdbb2d;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            /* Акцентный цвет для навигации */
            color: #fdbb2d;
        }

        .btn {
            display: inline-block;
            /* Акцентный цвет для кнопок */
            background: #fdbb2d;
            color: #18191c; /* Темный текст на кнопке */
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            /* Усиленный эффект при наведении */
            background: #ffcc4d;
            transform: translateY(-2px);
        }

        .hero {
            background: url('https://via.placeholder.com/1920x600/333333/aaaaaa') no-repeat center center/cover; /* Изменен плейсхолдер на темный */
            height: 500px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Более плотный оверлей */
            background: rgba(0,0,0,0.75);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #f0f0f0; /* Более светлый заголовок */
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #d0d0d0; /* Более светлый текст */
        }

        .features {
            padding: 80px 0;
            /* Более темный фон для секции */
            background: #252525;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 36px;
            /* Светлый заголовок на темном фоне */
            color: #f0f0f0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            /* Темный фон для карточек */
            background: #2e2e2e;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            /* Небольшая темная тень */
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            /* Усиленная тень при наведении */
            box-shadow: 0 12px 35px rgba(0,0,0,0.4);
        }

        .feature-icon {
            font-size: 50px;
            /* Акцентный цвет */
            color: #fdbb2d;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            margin-bottom: 15px;
            /* Светлый текст заголовка */
            color: #f0f0f0;
        }

        .feature-card p {
            color: #c0c0c0; /* Светлый текст описания */
        }

        .bonus {
            padding: 80px 0;
            /* Темный фон для секции */
            background: #1a1a1a;
        }

        .bonus-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .bonus-text {
            flex: 1;
        }

        .bonus-image {
            flex: 1;
            text-align: center;
        }

        .bonus-image img {
            max-width: 100%;
            border-radius: 10px;
            /* Небольшая тень для изображения */
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .bonus h2 {
            /* Светлый заголовок на темном фоне */
            color: #f0f0f0;
            margin-bottom: 20px;
        }

        .bonus ul {
            margin: 20px 0;
            padding-left: 20px;
            color: #d0d0d0; /* Светлый текст списка */
        }

        .bonus li {
            margin-bottom: 10px;
        }

        .text-block {
            padding: 60px 0;
            /* Более светлый темный фон */
            background: #252525;
            color: #e0e0e0;
        }

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

        .text-block h2 {
            /* Светлый заголовок */
            color: #f0f0f0;
            margin-bottom: 20px;
            text-align: center;
        }

        .text-block p {
            margin-bottom: 20px;
            color: #c0c0c0; /* Светлый текст абзацев */
        }

        .text-image {
            text-align: center;
            margin: 30px 0;
        }

        .text-image img {
            max-width: 100%;
            border-radius: 10px;
            /* Тень для изображения */
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .text-btn {
            text-align: center;
            margin-top: 30px;
        }

        .reviews {
            padding: 80px 0;
            /* Основной темный фон */
            background: #1a1a1a;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .review-card {
            /* Фон карточек отзывов */
            background: #2e2e2e;
            padding: 30px;
            border-radius: 10px;
            position: relative;
            /* Тень */
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 60px;
            /* Акцентный цвет */
            color: #fdbb2d;
            opacity: 0.2;
            font-family: serif;
        }

        .review-text {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            color: #c0c0c0; /* Светлый текст отзыва */
        }

        .review-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            /* Темный фон аватара */
            background: #444;
            margin-right: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            font-size: 24px;
        }

        .author-info h4 {
            /* Светлый текст имени */
            color: #f0f0f0;
            margin-bottom: 5px;
        }

        .author-info p {
            /* Более светлый серый для дополнительной информации */
            color: #b0b0b0;
            font-size: 14px;
        }

        .rating {
            /* Акцентный цвет для звезд */
            color: #fdbb2d;
            margin-top: 5px;
        }

        .tags {
            padding: 60px 0;
            /* Темный фон для тегов */
            background: #252525;
            text-align: center;
        }

        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .tag {
            display: inline-block;
            padding: 8px 20px;
            /* Темный фон тегов */
            background: #2e2e2e;
            border-radius: 30px;
            /* Светлый текст */
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            /* Тень */
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .tag:hover {
            /* Акцентный цвет при наведении */
            background: #fdbb2d;
            color: #1a1a1a; /* Темный текст на желтом фоне */
            transform: translateY(-2px);
        }

        footer {
            /* Очень темный фон для футера */
            background: #0d0d0d;
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            /* Акцентный цвет для заголовков футера */
            color: #fdbb2d;
        }

        .footer-column ul {
            list-style: none;
        }

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

        .footer-column ul li a {
            /* Светлый серый для ссылок */
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            /* Акцентный цвет при наведении */
            color: #fdbb2d;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            /* Светлая, полупрозрачная линия */
            border-top: 1px solid rgba(255,255,255,0.08);
            /* Более темный серый для копирайта */
            color: #888;
            font-size: 14px;
        }

        @media (max-width: 992px) {
            .features-grid, .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bonus-content, .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }

            nav ul {
                margin-top: 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .features-grid, .reviews-grid, .bonus-content, .footer-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 28px;
            }
        }