
    /* Main header styling */
.modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #1e1e2f, #3d3d63);
    border-bottom: 4px solid #ffcc00;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
}

/* Logo */
.modern-logo .logo-text {
    font-size: 2em;
    font-weight: bold;
    color: #ffcc00;
    text-decoration: none;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.modern-logo .logo-text:hover {
    color: #ffffff;
}

/* Advertisement text */
.modern-ad-text p {
    font-size: 1.2em;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

/* Quote button */
.modern-quote-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-quote-link {
    padding: 14px 36px;
    background: #ffcc00;
    color: #1e1e2f;
    font-weight: 700;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease-in-out;
}

.modern-quote-link:hover {
    background: #ffd633;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
    transform: scale(1.05);
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .modern-header {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .modern-ad-text p {
        font-size: 1.1em;
    }

    .modern-quote-button {
        margin-top: 15px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .modern-header {
        padding: 15px;
    }

    .modern-logo .logo-text {
        font-size: 1.8em;
    }

    .modern-ad-text p {
        font-size: 1em;
    }

    .modern-quote-link {
        font-size: 1em;
        padding: 12px 24px;
    }
}

/* Small screen responsiveness */
@media (max-width: 480px) {
    .modern-logo .logo-text {
        font-size: 1.5em;
    }

    .modern-ad-text p {
        font-size: 0.9em;
    }

    .modern-quote-link {
        font-size: 0.9em;
        padding: 10px 18px;
    }
}

        body {
            font-family: 'Verdana', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #e8f5e9;
            color: #2c3e50;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        header {
            background-color: #f8b400;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 26px;
            font-weight: bold;
            border-radius: 10px 10px 0 0;
        }

        .content {
            text-align: center;
            padding: 20px;
        }

        h2 {
            color: #f8b400;
            font-size: 24px;
            margin-bottom: 15px;
        }

        p {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
        }

        .btn {
            display: inline-block;
            background-color: #f8b400;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 18px;
            margin-top: 15px;
        }

        .btn:hover {
            background-color: #2e7d32;
        }

        .plans {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .plan {
            background-color: #f1f8e9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 250px;
        }

        .plan h3 {
            color: #2e7d32;
            font-size: 20px;
            margin-bottom: 10px;
        }

        footer {
            background-color: #f8b400;
            color: white;
            text-align: center;
            padding: 15px;
            margin-top: 40px;
            border-radius: 0 0 10px 10px;
        }

        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 15px; }
        .grid a { display: block; padding: 12px; background: #457b9d; color: #fff; text-align: center; text-decoration: none; border-radius: 5px; transition: 0.3s; }
        .grid a:hover { background: linear-gradient(135deg, #1e1e2f, #3d3d63); }
        .image-section img { width: 50%; border-radius: 10px; margin-top: 15px; }
    
.grid-temp {
    display: flex;
    gap: 10px;
}

.grid-temp a {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.grid-temp img {
    width: 100px; /* або інший розмір */
    height: auto;
    border-radius: 8px; /* для закруглення кутів */
}

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
    padding: 40px 20px;
    text-align: left;
}

/* Контейнер футера */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Блок з інформацією */
.footer-info {
    flex: 1 1 80px;
    max-width: 500px;
}

/* Опис та адреса */
.footer-description,
.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
}

/* Важлива інформація */
.footer-disclosure {
    flex: 1 1 400px;
    max-width: 600px;
}

/* Заголовок дисклеймера */
.disclaimer-title {
    font-size: 18px;
    font-weight: bold;
    color: #f8b400;
    margin-bottom: 10px;
}

/* Текст дисклеймера */
.disclaimer-text,
.regulatory-info {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
}

/* Меню з посиланнями */
.footer-links {
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    
}

.footer-links li {
    display: inline;
    margin: 0 15px;
}

.footer-links a {
    color: #f8b400;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Кнопка CTA */
.footer-cta {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    background-color: #f8b400;
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    
}

.cta-button:hover {
    background-color: #e09f3e;
}

/* Нижня частина футера */
.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #b0b0b0;
    margin-top: 20px;
}

/* Адаптація під мобільні пристрої */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links ul {
        padding-top: 10px;
    }

    .cta-button {
        width: 100%;
    }
}
