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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

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

.hero-content-side p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #546e7a;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1.3;
}

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

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.intro-image-offset {
    flex: 0.7;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-split-layout {
    padding: 80px 60px;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-row-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.service-row-split.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #546e7a;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 32px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.service-image {
    flex: 0.8;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
    height: 320px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section-inline {
    padding: 100px 60px;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center;
    color: #2c3e50;
}

.form-wrapper p {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.why-section-offset {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.why-content-left {
    flex: 1;
}

.why-content-left h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.why-list {
    list-style: none;
}

.why-list li {
    font-size: 18px;
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: #546e7a;
}

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

.why-image-right {
    flex: 0.9;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.why-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    padding: 60px 60px;
    background: #ecf0f1;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px 40px;
    background: #2c3e50;
    color: #ecf0f1;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #546e7a;
    max-width: 700px;
}

.thanks-container .service-selected {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 40px;
}

.thanks-container a {
    display: inline-block;
    padding: 14px 36px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background: #2980b9;
}

.about-hero {
    padding: 100px 60px;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #546e7a;
}

.about-content-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.about-image {
    flex: 0.8;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
    height: 420px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero {
    padding: 80px 60px;
    background: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-section {
    padding: 60px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
}

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

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #546e7a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #546e7a;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .header-right {
        align-items: center;
    }

    .main-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-side {
        padding: 40px 20px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .services-split-layout {
        padding: 60px 20px;
    }

    .service-row-split,
    .service-row-split.reverse {
        flex-direction: column;
    }

    .form-section-inline {
        padding: 60px 20px;
    }

    .why-section-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .disclaimer-section {
        padding: 40px 20px;
    }

    .footer-split {
        padding: 40px 20px;
    }

    .about-content-split {
        flex-direction: column;
        padding: 60px 20px;
    }

    .contact-info-section {
        padding: 40px 20px;
    }

    .legal-page {
        padding: 60px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}