
.modern-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 30px;
background: linear-gradient(135deg, #3498db, #8e44ad);
border-radius: 15px;
box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
color: white;
transition: background 0.4s ease;
}

/* Логотип */
.modern-logo .logo-text {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #f39c12;
letter-spacing: 2px;
}

/* Текст рекламної секції */
.modern-ad-text p {
font-size: 1.2em;
font-style: italic;
margin: 0;
}

/* Кнопка "Request a quote" */
.modern-quote-button {
text-align: center;
}

.modern-quote-link {
padding: 15px 25px;
background-color: #f39c12;
color: #2c3e50;
font-weight: bold;
text-decoration: none;
border-radius: 40px;
font-size: 1.1em;
transition: all 0.3s ease;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.modern-quote-link:hover {
background-color: #e67e22;
transform: translateY(-5px);
box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Адаптація для планшетів */
@media (max-width: 1024px) {


.modern-logo .logo-text {
    font-size: 1.8em;
    text-align: center;
}

.modern-ad-text p {
    font-size: 1.1em;
    text-align: center;
}

.modern-quote-link {
    font-size: 1.2em;
}
}

/* Адаптація для смартфонів */
@media (max-width: 768px) {
.modern-header {
    padding: 20px;
}

.modern-logo .logo-text {
    font-size: 1.5em;
}

.modern-quote-link {
    font-size: 1em;
    padding: 12px 18px;
}
}

/* Адаптація для маленьких екранів */
@media (max-width: 480px) {
.modern-logo .logo-text {
    font-size: 1.3em;
}

.modern-quote-link {
    font-size: 0.9em;
    padding: 10px 16px;
}
}

    .wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    padding: 60px 20px;
    border-radius: 12px;
    color: white;
}

.headline {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-button {
    display: block;
    background-color: #3B82F6;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.cta-button:hover {
    background-color: #1E40AF;
}

/* Features Section */
.features-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 40px;
}

.feature-box {
    flex: 1 1 45%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Year & Region Selection */
.year-selection, .region-selection {
    text-align: center;
    margin-top: 50px;
}

.year-options, .region-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.year-option, .region-option {
    background: #3B82F6;
    color: white;
    font-size: 18px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.year-option:hover, .region-option:hover {
    background: #1E40AF;
}

/* Category Section */
.category-section {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.category-box {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-box:hover {
    transform: translateY(-5px);
}

.plan-list a {
    display: block;
    color: #3B82F6;
    font-size: 18px;
    margin-top: 10px;
    text-decoration: none;
}

.plan-list a:hover {
    color: #1E40AF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 28px;
    }
    
    .features-section, .category-section {
        flex-direction: column;
    }
    
    
    
    .year-option, .region-option {
        font-size: 16px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 24px;
    }
    
    .year-option, .region-option {
        font-size: 14px;
        padding: 10px 18px;
    }
}

    /* Унікальний дизайн футера */
    .footer {
        background: #2d2f3a;
        color: #fff;
        font-family: 'Roboto', sans-serif;
        padding: 50px 0;
        position: relative;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        max-width: 1200px;
        margin: 0 auto;
        border-bottom: 1px solid #444;
    }

    .footer-column {
        flex: 1;
        padding: 10px 20px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #66bb6a;
        font-weight: 500;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.6;
        color: #e0e0e0;
    }

    .footer-text a {
        color: #66bb6a;
        text-decoration: none;
        font-weight: 500;
    }

    .footer-text a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        padding: 20px;
    }

    .footer-bottom-left {
        display: flex;
        align-items: center;
    }

    .footer-bottom-left p {
        margin-right: 20px;
        font-size: 14px;
        color: #b0b0b0;
    }

    .footer-button {
        background-color: #66bb6a;
        color: #fff;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .footer-button:hover {
        background-color: #388e3c;
    }

    .footer-links {
        text-align: right;
    }

    .footer-links ul {
        list-style-type: none;
        display: flex;
        justify-content: space-evenly;;
        gap: 20px;
        padding: 0;
    }

    .footer-links li {
        font-size: 14px;
    }

    .footer-links a {
        color: #b0b0b0;
        text-decoration: none;
    }

    .footer-links a:hover {
        color: #66bb6a;
    }

    .footer-disclaimer {
        font-size: 13px;
        color: #e0e0e0;
        margin-top: 20px;
        padding: 0 20px;
        text-align: center;
        line-height: 1.6;
    }

    .footer-copyright {
        text-align: center;
        font-size: 13px;
        color: #b0b0b0;
        margin-top: 20px;
    }

    /* Мобільна версія */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            align-items: center;
            padding: 0 15px;
        }

        .footer-column {
            padding: 10px 0;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-button {
            width: 100%;
            padding: 14px 20px;
            font-size: 18px;
        }

        .footer-links ul {
            
            list-style-type: none;
    display: flex
;
justify-content: space-evenly;
    gap: 20px;
    padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-disclaimer {
            padding: 0 15px;
        }
    }
