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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #007bff;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 1;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666666;
    padding: 0.375rem 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #007bff;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.hero-text-block {
    max-width: 560px;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #0056b3;
}

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

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

.intro-asymmetric {
    display: flex;
    padding: 6rem 4rem;
    gap: 4rem;
    background-color: #ffffff;
}

.intro-left {
    flex: 0 0 35%;
}

.intro-left h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-right p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.services-grid {
    padding: 6rem 4rem;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-offset {
    padding: 5rem 4rem;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-end;
}

.cta-content-box {
    max-width: 500px;
    padding: 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
}

.cta-content-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
}

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

.form-intro {
    flex: 0 0 40%;
    background-color: #f8f9fa;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.form-container {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

#contactForm {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.trust-content {
    max-width: 700px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
}

.footer-modern {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 4rem 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

.footer-links {
    flex: 0 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    flex: 0 1 250px;
}

.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #999999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #999999;
}

@media (max-width: 1024px) {
    .header-split {
        padding: 1.5rem 2rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-text-block h1 {
        font-size: 2.25rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
    }

    .services-grid {
        padding: 4rem 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .form-section-split {
        flex-direction: column;
    }

    .form-intro,
    .form-container {
        padding: 3rem 2rem;
    }

    .footer-modern {
        padding: 3rem 2rem 2rem;
    }
}

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 1.875rem;
    }

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

    .cta-offset {
        padding: 3rem 2rem;
        justify-content: center;
    }

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-content .service-selected {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-content .service-selected strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thanks-content .service-selected span {
    font-size: 1.25rem;
    color: #007bff;
    font-weight: 600;
}

.content-page {
    padding: 4rem 4rem 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 2rem;
    margin: 3rem 0 1rem;
    color: #1a1a1a;
}

.content-page h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.content-page p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-page ul,
.content-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-page li {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-page a {
    color: #007bff;
    text-decoration: none;
}

.content-page a:hover {
    text-decoration: underline;
}

.about-hero {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 4rem;
}

.about-image {
    flex: 0 0 45%;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-values {
    padding: 6rem 4rem;
    background-color: #f8f9fa;
}

.about-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-hero {
    padding: 5rem 4rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 6rem 4rem;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1 1 300px;
}

.contact-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-split {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .about-image {
        height: 400px;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .content-page {
        padding: 3rem 2rem;
    }

    .content-page h1 {
        font-size: 2.25rem;
    }
}