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

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-right a:hover {
    color: #16a085;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
    background: #ffffff;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #16a085;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #138871;
}

.hero-image-irregular {
    width: 55%;
    position: relative;
    overflow: hidden;
    background-color: #e8f5f1;
}

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

.intro-offset {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    background: #f5f8fa;
}

.intro-block-left {
    width: 48%;
}

.intro-block-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block-right {
    width: 52%;
    padding-top: 40px;
}

.intro-block-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.cta-inline {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #16a085;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.cta-inline:hover {
    opacity: 0.7;
}

.image-overlay-section {
    position: relative;
    padding: 120px 80px;
    background: #ffffff;
}

.image-overlay-section img {
    width: 70%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e8f5f1;
}

.overlay-text-box {
    position: absolute;
    right: 80px;
    bottom: 160px;
    background: #ffffff;
    padding: 45px;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.overlay-text-box h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.styled-list {
    list-style: none;
}

.styled-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.styled-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: 600;
}

.story-flow {
    padding: 100px 0;
    background: #f5f8fa;
}

.story-content-narrow {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-content-narrow h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #2c3e50;
}

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

.inline-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #e8f5f1;
}

.services-asymmetric {
    padding: 120px 80px;
    background: #ffffff;
}

.services-header-offset {
    margin-bottom: 70px;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-large {
    width: calc(60% - 15px);
}

.card-medium {
    width: calc(40% - 15px);
}

.card-small {
    width: calc(35% - 15px);
}

.card-wide {
    width: calc(65% - 15px);
}

.card-vertical {
    width: calc(40% - 15px);
}

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

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #16a085;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 13px 30px;
    background: #34495e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s;
    border-radius: 3px;
}

.select-service-btn:hover {
    background: #2c3e50;
}

.trust-builder {
    padding: 100px 80px;
    background: #f5f8fa;
}

.trust-content-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.trust-text {
    width: 55%;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.citation {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.citation:hover {
    opacity: 0.7;
}

.trust-visual {
    width: 45%;
}

.trust-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e8f5f1;
}

.testimonials-scattered {
    padding: 100px 80px;
    background: #ffffff;
    position: relative;
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 60px;
    padding-left: 100px;
    color: #2c3e50;
}

.testimonial-cluster {
    position: relative;
    min-height: 500px;
}

.testimonial {
    position: absolute;
    background: #f5f8fa;
    padding: 35px;
    max-width: 380px;
    border-left: 4px solid #16a085;
}

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

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.testimonial-pos-1 {
    top: 0;
    left: 50px;
}

.testimonial-pos-2 {
    top: 140px;
    right: 100px;
}

.testimonial-pos-3 {
    top: 320px;
    left: 180px;
}

.form-section {
    padding: 120px 80px;
    background: #f5f8fa;
}

.form-container-irregular {
    max-width: 900px;
    margin-left: 100px;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
}

.form-group input[readonly] {
    background: #f5f8fa;
    cursor: not-allowed;
}

.submit-btn {
    padding: 16px 50px;
    background: #16a085;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
    border-radius: 3px;
}

.submit-btn:hover {
    background: #138871;
}

.final-cta-offset {
    padding: 100px 80px;
    background: #ffffff;
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 150px;
    padding: 60px;
    background: #2c3e50;
    color: #ffffff;
}

.cta-content-irregular h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-content-irregular p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    border-radius: 3px;
}

.cta-secondary:hover {
    opacity: 0.9;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 70px 80px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 18px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    background: #34495e;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #16a085;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-references {
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
    opacity: 0.85;
}

.footer-references a {
    color: #16a085;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-references a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #16a085;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
    border-radius: 3px;
}

.cookie-accept {
    background: #16a085;
    color: #ffffff;
}

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

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

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-irregular {
        width: 100%;
    }

    .intro-offset,
    .trust-content-split {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-block-right,
    .trust-text,
    .trust-visual {
        width: 100%;
    }

    .services-grid-irregular .service-card {
        width: 100%;
    }

    .testimonial-cluster {
        position: static;
    }

    .testimonial {
        position: static;
        margin-bottom: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.page-hero {
    background: #2c3e50;
    color: #ffffff;
    padding: 100px 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 19px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 80px;
    background: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-main h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-main h3 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.content-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #e8f5f1;
}

.cta-box {
    background: #f5f8fa;
    padding: 45px;
    margin-top: 60px;
    border-left: 4px solid #16a085;
}

.cta-box h3 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-box p {
    margin-bottom: 25px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: #f5f8fa;
    padding: 40px;
    border-left: 4px solid #16a085;
}

.service-item h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    margin-bottom: 15px;
}

.service-item .service-price {
    font-size: 22px;
    font-weight: 600;
    color: #16a085;
    margin-top: 20px;
}

.contact-info {
    background: #f5f8fa;
    padding: 40px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.legal-section {
    padding: 80px 80px;
    background: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.thanks-section {
    padding: 120px 80px;
    background: #f5f8fa;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.thanks-details {
    background: #ffffff;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
    border-left: 4px solid #16a085;
}

.thanks-details p {
    margin-bottom: 12px;
    font-size: 16px;
}

.thanks-details strong {
    color: #2c3e50;
}

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

    .nav-right {
        gap: 20px;
    }

    .hero-content-offset {
        padding: 60px 30px;
    }

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

    .intro-offset,
    .services-asymmetric,
    .trust-builder,
    .testimonials-scattered,
    .form-section,
    .final-cta-offset {
        padding: 60px 30px;
    }

    .services-header-offset,
    .section-title-offset,
    .form-container-irregular,
    .cta-content-irregular {
        padding-left: 0;
        margin-left: 0;
    }

    .page-hero,
    .content-section,
    .legal-section,
    .thanks-section {
        padding: 60px 30px;
    }

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