
	.modern-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 40px;
		background: linear-gradient(45deg, #ff7e5f, #feb47b);  /* Креативний фон з градієнтом */
		border-bottom: 3px solid #e66d3b;
		box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
		position: relative;
	}
	
	/* Логотип */
	.modern-logo .logo-text {
		font-size: 2.4em;
		font-weight: 700;
		color: white;
		text-decoration: none;
		letter-spacing: 2px;
		text-transform: uppercase;
		transition: all 0.4s ease;
	}
	
	.modern-logo .logo-text:hover {
		color: #ffeb3b;
		letter-spacing: 3px;
	}
	
	/* Текст реклами */
	.modern-ad-text p {
		font-size: 1.2em;
		color: #f7f7f7;
		font-weight: 400;
		letter-spacing: 1px;
		margin: 0;
	}
	
	/* Кнопка */
	.modern-quote-button {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.modern-quote-link {
		padding: 12px 30px;
		background-color: #ff5733;
		color: #fff;
		font-weight: 700;
		text-decoration: none;
		border-radius: 50px;
		font-size: 1.1em;
		text-transform: uppercase;
		letter-spacing: 2px;
		box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
		position: relative;
		overflow: hidden;
		transition: all 0.4s ease;
	}
	
	.modern-quote-link:before {
		content: '';
		position: absolute;
		top: 50%;
		left: -100%;
		width: 200%;
		height: 200%;
		
		transition: all 0.3s ease;
		border-radius: 50%;
		transform: translateY(-50%);
	}
	
	.modern-quote-link:hover {
		background-color: #e64a19;
		box-shadow: 0 8px 20px rgba(255, 87, 51, 0.6);
	}
	
	.modern-quote-link:hover:before {
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	}
	
	/* Адаптація для планшетів */
	@media (max-width: 1024px) {
		.modern-header {
			flex-direction: column;
			padding: 25px;
			text-align: center;
		}
	
		.modern-quote-button {
			margin-top: 15px;
		}
	}
	
	/* Адаптація для смартфонів */
	@media (max-width: 768px) {
		.modern-header {
			padding: 15px;
		}
	
		.modern-logo .logo-text {
			font-size: 2em;
		}
	
		.modern-quote-link {
			font-size: 1em;
			padding: 10px 18px;
			max-width: 220px;
			text-align: center;
		}
	}
	
	/* Адаптація для маленьких екранів */
	@media (max-width: 480px) {
		.modern-logo .logo-text {
			font-size: 1.8em;
		}
	
		.modern-ad-text p {
			font-size: 1.1em;
		}
	
		.modern-quote-link {
			font-size: 0.95em;
			padding: 9px 16px;
			max-width: 200px;
		}
	}

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
        }
        .wrapper {
            
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
        }
        .container {
			text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3, h4 {
            color: #2c3e50;
            font-weight: bold;
        }
        h1 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 28px;
            text-align: center;
            margin-top: 40px;
            margin-bottom: 20px;
        }
        p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }
        .highlight {
            background-color: #f39c12;
            color: white;
            padding: 10px;
            text-align: center;
            font-size: 18px;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .image-section {
            text-align: center;
            margin-top: 30px;
        }
        .image-section img {
            max-width: 70%;
            height: auto;
        }
        .btn {
            background-color: #2980b9;
            color: white;
            padding: 15px 30px;
            text-align: center;
            display: block;
            
            margin-top: 20px;
            font-size: 18px;
            text-decoration: none;
            border-radius: 5px;
        }
        .grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            gap: 15px;
        }
        .grid a {
            background-color: #2980b9;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            flex: 1 0 30%;
            text-align: center;
        }
        .text-section {
            margin-top: 40px;
        }
        .disclaimer-section {
            background-color: #ecf0f1;
            padding: 20px;
            margin-top: 40px;
            text-align: center;
        }
        .disclaimer-section p {
            font-size: 14px;
            color: #7f8c8d;
        }
        @media (max-width: 768px) {
            .grid a {
                flex: 1 0 45%;
            }
        }
        @media (max-width: 480px) {
            .grid a {
                flex: 1 0 90%;
            }
        }
    
    /* Унікальний футер з новими стилями для Великої Британії */
    .custom-footer {
        background-color: #4fa2b8;
        color: #ffffff;
        font-family: 'Arial', sans-serif;
        padding: 50px 30px;
        text-align: center;
    }

	

    /* Блоки контенту футера */
    .footer-main-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-block {
        flex: 1 1 280px;
        margin-bottom: 20px;
        text-align: left;
    }

    .footer-block h3 {
        font-size: 22px;
        color: #f39c12;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-block p, .footer-block a {
        font-size: 14px;
        color: #d1d1d1;
        line-height: 1.6;
    }

    .footer-block a {
        text-decoration: none;
        
        margin-bottom: 5px;
    }

    .footer-block a:hover {
        text-decoration: underline;
    }

    /* Кнопка для отримання безкоштовних пропозицій */
    .get-quotes-btn {
        background-color: #f39c12;
        color: #fff;
        padding: 15px 30px;
        font-size: 16px;
        border-radius: 30px;
        text-decoration: none;
        margin-top: 20px;
        display: inline-block;
        font-weight: bold;
    }

    .get-quotes-btn:hover {
        background-color: #d78e00;
    }

    /* Лінки в футері */
	

    .footer-links ul {
		
        list-style: none;
        padding: 0;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .footer-links li {
        font-size: 14px;
    }

    /* Дісклеймер */
    .footer-disclaimer {
        margin-top: 30px;
        font-size: 13px;
        color: #bbbbbb;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* Підпис внизу футера */
    .footer-copyright {
        margin-top: 40px;
        font-size: 12px;
        color: #888888;
    }

    /* Адаптація для мобільних пристроїв */
    @media (max-width: 768px) {
        .footer-main-content {
            flex-direction: column;
            align-items: center;
        }

        .footer-block {
            text-align: center;
            max-width: none;
            margin-bottom: 30px;
        }

        .get-quotes-btn {
           
            text-align: center;
        }

        .footer-links ul {
            flex-direction: column;
            align-items: center;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-copyright {
            margin-top: 20px;
        }
    }
