/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation - Asymmetric Layout */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background-color: #ffffff;
    border-bottom: 2px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav.asymmetric {
    padding-left: 12%;
    padding-right: 5%;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #1a73e8;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #1a73e8;
}

/* Hero Section - Offset Layout */
.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f8f9fa;
    padding: 60px 0;
}

.hero-content-left {
    flex: 0 0 45%;
    padding-left: 12%;
    padding-right: 5%;
}

.hero-content-left h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-visual-right {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Intro Block - Staggered */
.intro-block.staggered {
    padding: 100px 15%;
    background-color: #ffffff;
}

.intro-text-wide {
    max-width: 850px;
    margin-left: 8%;
}

.intro-text-wide h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Image-Text Overlap Section */
.image-text-overlap {
    display: flex;
    align-items: center;
    padding: 120px 8%;
    background-color: #f1f3f5;
    position: relative;
}

.overlap-image {
    flex: 0 0 50%;
    background-color: #dee2e6;
}

.overlap-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overlap-card {
    flex: 0 0 50%;
    padding: 50px;
    background-color: #ffffff;
    margin-left: -80px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.overlap-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.overlap-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.link-arrow {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #1557b0;
}

.link-arrow::after {
    content: " →";
    margin-left: 5px;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 80px 20%;
    background-color: #1a73e8;
}

.testimonial-inline blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #e3f2fd;
    font-style: normal;
}

/* Benefits Grid - Irregular */
.benefits-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 8%;
    gap: 30px;
    background-color: #ffffff;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 40px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.benefit-card.tall {
    flex: 0 0 calc(40% - 15px);
}

.benefit-card.wide {
    flex: 0 0 calc(60% - 15px);
}

.benefit-card.offset {
    flex: 0 0 calc(50% - 15px);
    margin-top: 40px;
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 25px;
    background-color: #dee2e6;
}

.benefit-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* CTA Section Split */
.cta-section-split {
    display: flex;
    min-height: 500px;
    background-color: #f1f3f5;
}

.cta-left {
    flex: 0 0 45%;
    padding: 80px 8% 80px 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.6;
}

.cta-right {
    flex: 0 0 55%;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forms */
.inline-form,
.service-contact-form {
    width: 100%;
    max-width: 450px;
}

.inline-form label,
.service-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 14px;
}

.inline-form input,
.inline-form select,
.inline-form textarea,
.service-contact-form input,
.service-contact-form select,
.service-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.inline-form input:focus,
.inline-form select:focus,
.inline-form textarea:focus,
.service-contact-form input:focus,
.service-contact-form select:focus,
.service-contact-form textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-submit,
.btn-submit-form {
    width: 100%;
    padding: 14px 30px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover,
.btn-submit-form:hover {
    background-color: #1557b0;
    transform: translateY(-1px);
}

/* Reference Block */
.reference-block {
    padding: 60px 12%;
    background-color: #e9ecef;
}

.reference-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.reference-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.reference-block a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.reference-block a:hover {
    text-decoration: underline;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 8% 30px 12%;
}

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

.footer-col h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #adb5bd;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #343a40;
}

.footer-references h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.6;
    color: #adb5bd;
    margin-bottom: 8px;
}

.footer-disclaimer {
    padding-top: 25px;
    border-top: 1px solid #343a40;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 8%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1557b0;
}

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

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

/* About Page Styles */
.about-hero-asymmetric {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.about-text-block {
    flex: 0 0 45%;
}

.about-text-block h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.about-image-offset {
    flex: 0 0 50%;
    margin-top: -60px;
    background-color: #dee2e6;
}

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

.story-section {
    padding: 80px 20%;
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-irregular {
    padding: 100px 8%;
    background-color: #f1f3f5;
}

.values-irregular h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 0 0 calc(50% - 15px);
    padding: 40px;
    background-color: #ffffff;
}

.value-item.offset-top {
    margin-top: 50px;
}

.value-item.offset-bottom {
    margin-top: -50px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-approach {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.approach-text {
    flex: 0 0 50%;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.approach-visual {
    flex: 0 0 45%;
    background-color: #dee2e6;
}

.approach-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.expertise-section {
    padding: 80px 15%;
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.expertise-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Services Page Styles */
.services-intro {
    padding: 80px 15%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

.services-grid-asymmetric {
    padding: 60px 8%;
    background-color: #ffffff;
}

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

.service-card.featured {
    background-color: #f8f9fa;
    padding: 50px;
}

.service-visual {
    flex: 0 0 40%;
    background-color: #dee2e6;
}

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

.service-content {
    flex: 0 0 55%;
}

.service-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-form-section {
    padding: 80px 15%;
    background-color: #f1f3f5;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 15%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-content-asymmetric {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
    align-items: flex-start;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 0 0 45%;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a73e8;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 0 0 50%;
    background-color: #dee2e6;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-note {
    padding: 60px 15%;
    background-color: #f8f9fa;
}

.contact-note h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.contact-note a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 80px 15%;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a73e8;
}

.thanks-content {
    padding: 80px 15%;
    background-color: #ffffff;
}

.thanks-message {
    max-width: 750px;
    margin: 0 auto 50px;
}

.thanks-message h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-display {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
    font-size: 16px;
    color: #1a73e8;
    font-weight: 600;
}

.next-steps {
    max-width: 750px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    margin-bottom: 10px;
}

.next-steps a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.next-steps a:hover {
    color: #1557b0;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 80px 15%;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-offset,
    .image-text-overlap,
    .cta-section-split,
    .about-hero-asymmetric,
    .team-approach,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-visual-right,
    .overlap-image,
    .overlap-card,
    .cta-left,
    .cta-right,
    .about-text-block,
    .about-image-offset,
    .approach-text,
    .approach-visual,
    .contact-info-block,
    .contact-visual,
    .service-visual,
    .service-content {
        flex: 1 1 100%;
    }

    .overlap-card {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .benefit-card.tall,
    .benefit-card.wide,
    .benefit-card.offset {
        flex: 1 1 100%;
        margin-top: 0;
    }

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

    .value-item.offset-top,
    .value-item.offset-bottom {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 20px 5%;
    }

    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

    .hero-content-left h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .intro-text-wide h2,
    .services-intro h1,
    .contact-hero h1,
    .thanks-hero h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content p {
        margin-right: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
}