* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            background-color: #f5f6f8;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Шапка */
        header {
            background-color: #fff;
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .logo span {
            color: #a6e22e; /* Лаймовый цвет */
        }

        /* Главный баннер */
        .hero {
            background-color: #1a1a1a;
            color: #fff;
            padding: 20px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .hero small {
            color: #888;
            font-size: 14px;
        }

        /* Контейнер с уведомлением */
        .info-banner {
            background-color: #fff;
            max-width: 1200px;
            margin: 20px auto 0;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-size: 14px;
            color: #555;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Сетка офферов */
        .grid-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
            flex: 1;
        }

        /* Карточка оффера */
        .card {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-logo {
            height: 40px;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-weight: bold;
            font-size: 20px;
        }

        /* Стили для текстовых заглушек логотипов */
        .logo-alfa { color: #fa1919; }
        .logo-vivus { color: #0a8625; }
        .logo-nebus { color: #1093aa; } 
        .logo-zaimer { color: #4caf50; }

        .card-divider {
            height: 1px;
            background-color: #eee;
            margin-bottom: 15px;
        }

        .card-details {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 20px;
        }

        .card-details-left {
            font-size: 12px;
            color: #777;
            line-height: 1.5;
        }

        .card-details-right {
            font-size: 20px;
            font-weight: 800;
            color: #000;
        }

        .btn-get-money {
            display: block;
            width: 100%;
            padding: 12px;
            background-color: #b4e637; /* Яркий лаймовый */
            color: #222;
            text-align: center;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-get-money:hover {
            background-color: #a0d12a;
        }

        /* Футер (Cookie) */
        footer {
            background-color: #fff;
            padding: 20px;
            border-top: 1px solid #eee;
            font-size: 12px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-accept {
            padding: 5px 15px;
            background: transparent;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
        }

        .btn-accept:hover {
            background: #f0f0f0;
        }

        /* --- Секция "Наши выгоды" --- */
        .benefits-section {
            background-color: #ffffff;
            padding-top: 30px;
            padding-bottom: 30px;
            text-align: center;
        }

        .benefits-title {
            font-size: 28px;
            font-weight: 800;
            color: #111;
            margin-bottom: 20px;
        }

        .benefits-list {
            list-style: none;
            display: inline-flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
            padding: 0;
            margin: 0;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 16px;
            color: #333;
        }

        .benefit-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            background-color: #b4e637; /* Лаймовый цвет, как на кнопках */
            color: #ffffff;
            border-radius: 50%;
            font-size: 14px;
            font-weight: bold;
            flex-shrink: 0;
        }

        /* --- Темный футер --- */
        .dark-footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 50px 20px;
            text-align: center;
            font-family: inherit;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
            margin-bottom: 40px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #b4e637; /* Лаймовый при наведении */
        }

        .footer-disclaimer {
            font-size: 12px;
            color: #a0a0a0;
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Стиль для картинок логотипов */
        .card-logo-img {
            height: 60px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            margin-bottom: 10px;
            display: block;
        }