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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
}

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

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2a2a2a;
}

.ad-label {
    font-size: 11px;
    color: #666;
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 12px;
}

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

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

.nav-links a:hover {
    color: #8b7355;
}

.hero-asymmetric {
    position: relative;
    height: 90vh;
    margin-top: 100px;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 50px;
    width: 70%;
    height: calc(100% - 100px);
    background-color: #e5ddd5;
}

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

.hero-text-overlay {
    position: absolute;
    left: 8%;
    bottom: 100px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.hero-text-overlay p {
    font-size: 18px;
    color: #555;
}

.intro-offset {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1400px;
    margin: 150px auto;
    padding: 0 40px;
}

.intro-block {
    flex: 1;
    padding-top: 60px;
}

.intro-block h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.intro-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-visual {
    flex: 0 0 450px;
    background-color: #f5f1ed;
}

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

.problem-amplification {
    background-color: #8b7355;
    color: #fff;
    padding: 120px 40px;
    margin: 100px 0;
}

.problem-text {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 120px;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.insight-staggered {
    display: flex;
    max-width: 1400px;
    margin: 150px auto;
    padding: 0 40px;
    gap: 100px;
    align-items: center;
}

.insight-column {
    flex: 1;
    padding-right: 40px;
}

.insight-column h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.insight-column p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.insight-image-right {
    flex: 0 0 500px;
    margin-top: -80px;
    background-color: #e8e3df;
}

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

.trust-building {
    max-width: 900px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: #f9f7f5;
    border-left: 6px solid #8b7355;
}

.trust-building h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.trust-building p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.trust-building a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

.trust-building a:hover {
    text-decoration: underline;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 150px auto;
    padding: 0 40px;
}

.services-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 80px;
    text-align: center;
    color: #2a2a2a;
}

.services-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 300px;
    height: 240px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 100px;
}

.card-offset-3 {
    margin-left: 50px;
}

.card-offset-4 {
    margin-left: 150px;
}

.card-offset-5 {
    margin-left: 80px;
}

.select-service {
    padding: 12px 30px;
    background-color: #8b7355;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #6f5a43;
}

.testimonials-inline {
    background-color: #2a2a2a;
    color: white;
    padding: 100px 40px;
    margin: 150px 0;
}

.testimonial-block {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px;
    border-left: 4px solid #8b7355;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #aaa;
    font-weight: 600;
}

.cta-split {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.cta-content {
    background-color: #8b7355;
    color: white;
    padding: 80px 60px;
    max-width: 700px;
    margin-left: auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
}

.form-section {
    background-color: #f5f1ed;
    padding: 100px 40px;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 100px;
    background-color: white;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2a2a2a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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: #8b7355;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b7355;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6f5a43;
}

.references-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #f9f9f9;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.references-list a {
    color: #8b7355;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-offset {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
}

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

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

.footer-column a:hover {
    color: #8b7355;
}

.disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid #333;
}

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

.about-hero {
    background-color: #8b7355;
    color: white;
    padding: 150px 40px 100px;
    margin-top: 100px;
}

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

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.6;
}

.about-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2a2a2a;
}

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

.about-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f7f5;
    padding: 40px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.value-card p {
    font-size: 16px;
    color: #555;
}

.services-list-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-list-section h1 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: #2a2a2a;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-detail img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

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

.service-info .price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin: 20px 0;
}

.contact-page {
    max-width: 1200px;
    margin: 150px auto;
    padding: 0 40px;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #2a2a2a;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

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

.thanks-page {
    max-width: 800px;
    margin: 200px auto;
    padding: 80px 60px;
    text-align: center;
    background-color: #f9f7f5;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #8b7355;
}

.thanks-page p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #8b7355;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-page a:hover {
    background-color: #6f5a43;
}

.legal-page {
    max-width: 900px;
    margin: 150px auto;
    padding: 0 40px;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .hero-asymmetric {
        height: auto;
        margin-top: 150px;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-text-overlay {
        position: relative;
        left: 0;
        padding: 40px;
        margin-top: -60px;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .intro-offset,
    .insight-staggered,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .intro-visual,
    .insight-image-right {
        flex: 1 1 auto;
        width: 100%;
    }

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

    .service-card img {
        width: 100%;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
    }

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

    .service-detail img {
        width: 100%;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}