* {
    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: #1F2937;
    background-color: #FFFFFF;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    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-buttons {
    display: flex;
    gap: 1rem;
}

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

.btn-cookie {
    background-color: #2563EB;
    color: #FFFFFF;
}

.btn-cookie:hover {
    background-color: #1D4ED8;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

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

.main-nav {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6B7280;
    padding: 0.25rem 0.75rem;
    background-color: #F3F4F6;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563EB;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    padding: 4rem;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2563EB;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-image,
.content-image,
.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.split-reverse {
    display: flex;
    min-height: 500px;
    background-color: #F9FAFB;
}

.content-block {
    padding: 4rem;
    max-width: 600px;
}

.content-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.content-block p {
    font-size: 1.0625rem;
    color: #4B5563;
    margin-bottom: 1rem;
}

.services-intro {
    padding: 5rem 2rem 3rem;
    background-color: #FFFFFF;
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.section-header p {
    font-size: 1.125rem;
    color: #6B7280;
}

.service-item-split {
    display: flex;
    min-height: 450px;
    border-bottom: 1px solid #E5E7EB;
}

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

.service-content {
    padding: 3rem;
    max-width: 600px;
}

.service-content h3 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #111827;
}

.service-content p {
    font-size: 1.0625rem;
    color: #4B5563;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 0.875rem 1.75rem;
    background-color: #111827;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #374151;
    transform: translateY(-2px);
}

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

.cta-content {
    padding: 4rem;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.cta-content p {
    font-size: 1.125rem;
    color: #4B5563;
}

.cta-form-container {
    padding: 3rem;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    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: #2563EB;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #2563EB;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.main-footer {
    background-color: #111827;
    color: #F9FAFB;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-column p {
    color: #D1D5DB;
    font-size: 0.9375rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

.footer-column ul li a:hover {
    color: #2563EB;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.disclaimer-footer {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.5;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #F9FAFB;
    padding: 4rem;
    border-radius: 12px;
}

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

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

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2563EB;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-container p {
    margin-bottom: 1rem;
    color: #4B5563;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
    color: #4B5563;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.contact-info p {
    margin-bottom: 0.75rem;
    color: #374151;
}

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

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

.about-hero p {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    padding: 4rem;
    max-width: 700px;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-content p {
    font-size: 1.0625rem;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #F9FAFB;
    border-radius: 8px;
}

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

.value-card p {
    color: #4B5563;
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-full {
    display: flex;
    min-height: 400px;
    border-bottom: 1px solid #E5E7EB;
}

.service-card-full:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #F9FAFB;
}

.service-card-image {
    flex: 1;
    overflow: hidden;
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #111827;
}

.service-card-content p {
    font-size: 1.0625rem;
    color: #4B5563;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info-block {
    padding: 4rem;
    max-width: 600px;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #111827;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.info-item p {
    font-size: 1.0625rem;
    color: #6B7280;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #E5E7EB;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .service-item-split,
    .cta-split,
    .about-split,
    .contact-split,
    .service-card-full {
        flex-direction: column;
    }

    .service-item-split.reverse,
    .service-card-full:nth-child(even) {
        flex-direction: column;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        width: 100%;
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero-content,
    .content-block,
    .service-content,
    .cta-content,
    .about-content,
    .contact-info-block {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}