* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-label {
    background-color: #e74c3c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #bdc3c7;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-section {
    padding: 80px 40px;
    background-color: #fff;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #bdc3c7;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.services-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #bdc3c7;
}

.service-card h3 {
    padding: 20px 20px 12px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 12px;
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

.price {
    padding: 12px 20px;
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
}

.btn-select {
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 80px 40px;
    background-color: #fff;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-image {
    flex: 1;
    background-color: #bdc3c7;
}

.form-image img {
    width: 100%;
    height: 100%;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-content p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #555;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #229954;
}

.why-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.why-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

.why-image {
    flex: 1;
    background-color: #bdc3c7;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #ecf0f1;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.thanks-box .service-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #bdc3c7;
    min-height: 400px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-container ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-container,
    .why-split,
    .contact-split {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}