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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 11px;
    color: #888;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 12px;
}

.hero-offset {
    margin-top: 120px;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 0 8%;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-left: 40px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background-color: #e8e8e4;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.story-block {
    padding: 140px 8% 120px;
    background-color: #f5f5f2;
}

.story-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text-offset {
    flex: 1.2;
    padding-top: 50px;
}

.story-text-offset h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 35px;
    font-weight: 400;
    color: #1a1a1a;
}

.story-text-offset p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 22px;
    color: #4a4a4a;
}

.story-image-float {
    flex: 1;
    margin-top: -80px;
    background-color: #d8d8d4;
}

.story-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.insight-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f7 100%);
}

.insight-container {
    display: flex;
    gap: 70px;
    align-items: stretch;
}

.insight-block {
    flex: 1;
    padding: 50px;
    background-color: #2c2c2c;
    color: #ffffff;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.insight-block h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 400;
}

.insight-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.insight-block-alt {
    flex: 1;
    padding: 50px;
    background-color: #e8e0d5;
    color: #2c2c2c;
    transform: rotate(1deg);
    margin-top: 40px;
    border-radius: 4px;
}

.insight-block-alt h3 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 400;
}

.insight-block-alt p {
    font-size: 17px;
    line-height: 1.7;
}

.trust-stagger {
    padding: 120px 8%;
    background-color: #fafaf8;
    position: relative;
}

.trust-content-wide {
    max-width: 720px;
    margin-bottom: 60px;
}

.trust-content-wide h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 28px;
    font-weight: 400;
}

.trust-content-wide p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.trust-image-overlap {
    width: 55%;
    margin-left: auto;
    margin-bottom: -80px;
    position: relative;
    z-index: 2;
    background-color: #d0d0cc;
}

.trust-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.trust-details-grid {
    display: flex;
    gap: 50px;
    margin-top: 120px;
    padding-left: 60px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 21px;
    margin-bottom: 14px;
    font-weight: 500;
}

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

.testimonials-asymmetric {
    padding: 100px 8%;
    background-color: #f0ede7;
}

.testimonial-left {
    max-width: 520px;
    margin-bottom: 50px;
    padding-left: 80px;
}

.testimonial-right-offset {
    max-width: 480px;
    margin-left: auto;
    margin-bottom: 50px;
    padding-right: 60px;
}

.testimonial-center {
    max-width: 540px;
    margin: 0 auto;
    padding-left: 100px;
}

blockquote {
    padding: 35px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

blockquote p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 18px;
}

cite {
    font-style: normal;
    font-size: 14px;
    color: #888;
}

.benefits-irregular {
    padding: 120px 8%;
    background-color: #ffffff;
}

.benefits-title-offset {
    font-size: 44px;
    margin-bottom: 70px;
    margin-left: 120px;
    font-weight: 400;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card-large {
    flex: 1 1 calc(58% - 40px);
    background-color: #fafaf8;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.benefit-card-large img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.benefit-card-large h3 {
    font-size: 26px;
    margin: 30px 35px 18px;
    font-weight: 400;
}

.benefit-card-large p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0 35px 35px;
    color: #4a4a4a;
}

.benefit-card-small {
    flex: 1 1 calc(42% - 40px);
    background-color: #e8e0d5;
    padding: 40px;
    border-radius: 6px;
}

.benefit-card-small h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
}

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

.services-reveal {
    padding: 120px 8%;
    background: linear-gradient(180deg, #f5f5f2 0%, #ffffff 100%);
}

.services-intro-diagonal {
    max-width: 580px;
    margin-bottom: 80px;
    padding-left: 40px;
}

.services-intro-diagonal h2 {
    font-size: 46px;
    margin-bottom: 24px;
    font-weight: 400;
}

.services-intro-diagonal p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a5a5a;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 50px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 26px;
    margin: 28px 32px 16px;
    font-weight: 400;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 32px 20px;
    color: #5a5a5a;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 500;
    margin: 0 32px 24px;
    color: #2c2c2c;
}

.btn-select {
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    padding: 16px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-offset {
    padding: 100px 8%;
    background-color: #f9f9f7;
}

.form-container-asymmetric {
    max-width: 680px;
    margin-left: 120px;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 45px;
    color: #5a5a5a;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.selected-service-display {
    background-color: #f0ede7;
    padding: 18px;
    border-radius: 4px;
    margin-bottom: 28px;
    font-size: 15px;
    color: #3a3a3a;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer-irregular {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 80px 8% 40px;
}

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

.footer-block-main {
    flex: 1.5;
}

.footer-block-main h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 400;
}

.footer-block-main p {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 500;
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-block p {
    font-size: 15px;
    color: #b0b0b0;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #5a5a5a;
}

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

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

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

    .hero-offset {
        flex-direction: column;
        padding: 0 5%;
        margin-top: 180px;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .story-wrapper {
        flex-direction: column;
    }

    .insight-container {
        flex-direction: column;
    }

    .insight-block,
    .insight-block-alt {
        transform: none;
    }

    .trust-details-grid {
        flex-direction: column;
        padding-left: 0;
    }

    .services-grid-offset {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }
}