* {
    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: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-disclosure {
    color: #999;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
}

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

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-color: #e8eaed;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e3f73;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5aa0;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid #2c5aa0;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c5aa0;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    background-color: #d4d8dc;
    min-height: 500px;
    position: relative;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.service-card .price {
    margin: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5aa0;
}

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.value-split {
    display: flex;
    align-items: stretch;
}

.value-text {
    flex: 1;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.value-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.cta-inline {
    display: inline-block;
    color: #ffffff;
    background-color: #4a90e2;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.cta-inline:hover {
    background-color: #357abd;
}

.value-stats {
    flex: 1;
    padding: 4rem;
    background-color: #34495e;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.testimonials {
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #4a90e2;
    text-align: left;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.cta-final-split {
    display: flex;
    align-items: stretch;
}

.cta-final-left {
    flex: 1;
    background-color: #d4d8dc;
    min-height: 500px;
}

.cta-final-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-final-right {
    flex: 1;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-final-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta-final-right p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-split .hero-left {
    min-height: 60vh;
}

.page-hero-split .hero-right {
    min-height: 60vh;
}

.about-story-split {
    display: flex;
    align-items: stretch;
}

.about-story-split.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background-color: #d4d8dc;
    min-height: 500px;
}

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

.story-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.values-split {
    display: flex;
    align-items: stretch;
}

.values-text {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    background-color: #d4d8dc;
    min-height: 500px;
}

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

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.cta-about-split {
    display: flex;
    align-items: stretch;
}

.cta-about-left {
    flex: 1;
    padding: 4rem;
    background-color: #4a90e2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-about-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta-about-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-about-left .cta-primary {
    background-color: #ffffff;
    color: #4a90e2;
}

.cta-about-left .cta-primary:hover {
    background-color: #f0f0f0;
}

.cta-about-right {
    flex: 1;
    background-color: #d4d8dc;
    min-height: 500px;
}

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

.services-detailed {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-item-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 1.5rem 0;
}

.service-visual {
    flex: 1;
    background-color: #d4d8dc;
    min-height: 450px;
}

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

.btn-select-service {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1e3f73;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #f8f9fa;
}

.form-intro {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.form-container {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
}

#serviceForm {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#serviceForm label {
    font-weight: 600;
    color: #333;
    margin-bottom: -0.75rem;
}

#serviceForm input,
#serviceForm textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

#serviceForm input:focus,
#serviceForm textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

#serviceForm input[readonly] {
    background-color: #f0f0f0;
    color: #333;
}

.btn-submit {
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-info {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

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

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.note-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.note-content a {
    color: #2c5aa0;
    text-decoration: underline;
}

.note-content a:hover {
    color: #1e3f73;
}

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

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5aa0;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e3f73;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 0.75rem;
}

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #777;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.cookie-link {
    color: #4a90e2;
    text-decoration: underline;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-link:hover {
    color: #357abd;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .value-split,
    .cta-final-split,
    .page-hero-split,
    .about-story-split,
    .values-split,
    .service-item-split,
    .form-section-split,
    .contact-split,
    .cta-about-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-item-split.reverse,
    .about-story-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-image,
    .intro-text,
    .value-text,
    .value-stats,
    .cta-final-left,
    .cta-final-right,
    .story-image,
    .story-text,
    .values-text,
    .values-image,
    .service-info,
    .service-visual,
    .form-intro,
    .form-container,
    .contact-info,
    .contact-map,
    .cta-about-left,
    .cta-about-right {
        min-height: 400px;
    }

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

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-left,
    .intro-text,
    .value-text,
    .story-text,
    .values-text,
    .service-info,
    .form-intro,
    .form-container,
    .contact-info,
    .cta-about-left,
    .cta-final-right {
        padding: 2rem;
    }

    .hero-left h1 {
        font-size: 1.9rem;
    }

    .services-preview,
    .testimonials,
    .team-section {
        padding: 3rem 1rem;
    }

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}