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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

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

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

.intro-offset {
    padding: 80px 40px;
    background-color: #ffffff;
}

.intro-narrow {
    max-width: 680px;
    margin: 0 0 0 120px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.intro-narrow p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-cards {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-left {
    margin-bottom: 50px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

.section-header-left p {
    font-size: 18px;
    color: #5a6c7d;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    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;
}

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

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.card-content p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

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

.cta-inline {
    margin-top: 40px;
    text-align: center;
}

.cta-inline p {
    font-size: 16px;
    color: #5a6c7d;
}

.cta-inline a {
    color: #3498db;
    text-decoration: underline;
}

.cta-inline a:hover {
    color: #2980b9;
}

.form-section-split {
    display: flex;
    background-color: #ffffff;
    padding: 80px 0;
}

.form-intro {
    flex: 1;
    padding: 0 60px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.form-container {
    flex: 1;
    padding: 0 80px 0 60px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    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: #3498db;
}

.trust-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.trust-content-centered h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 0 0 calc(33.333% - 27px);
    text-align: center;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.trust-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 0 0 22%;
}

.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 ul {
    list-style: none;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

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

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: #34495e;
    border-radius: 6px;
}

.disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.cookie-link {
    color: #3498db;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #5dade2;
}

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

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.about-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.about-story-split {
    display: flex;
    padding: 80px 60px;
    background-color: #ffffff;
}

.story-text {
    flex: 1;
    padding-right: 60px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.story-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #d4e4f0;
}

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

.philosophy-centered {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.philosophy-centered h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 0 0 calc(50% - 20px);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.philosophy-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-offset {
    padding: 80px 60px;
    background-color: #ffffff;
    max-width: 900px;
    margin-left: 100px;
}

.team-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.team-offset p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-full {
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ecf0f1;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #ffffff;
}

.values-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #ecf0f1;
}

.cta-about {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

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

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.services-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.service-detail-split {
    display: flex;
    padding: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

.service-image-left,
.service-image-right {
    flex: 0 0 45%;
    background-color: #d4e4f0;
}

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

.service-info-right,
.service-info-left {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info-right h2,
.service-info-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-info-right p,
.service-info-left p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-info-right ul,
.service-info-left ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-info-right ul li,
.service-info-left ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.price-box {
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.services-note {
    padding: 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-note h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-note p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-hero {
    padding: 60px 60px 30px;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    color: #1a252f;
}

.contact-content {
    padding: 60px;
    background-color: #ffffff;
}

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

.contact-details,
.legal-details {
    flex: 1;
}

.contact-details h2,
.legal-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-block,
.legal-block {
    margin-bottom: 32px;
}

.contact-block h3,
.legal-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p,
.legal-block p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 12px;
}

.thanks-page {
    min-height: 500px;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.thanks-service-info {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-next-steps ol {
    padding-left: 20px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.legal-page {
    padding: 60px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

.legal-content p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-split,
    .form-section-split,
    .about-story-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content,
    .form-intro,
    .form-container,
    .story-text,
    .service-info-right,
    .service-info-left {
        padding: 40px 30px;
    }

    .intro-narrow,
    .team-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

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

    .trust-item,
    .philosophy-item {
        flex: 0 0 100%;
    }

    .footer-column {
        flex: 0 0 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}