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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fdfaf7;
}

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

.cookie-banner.active {
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-actions {
    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: #d4af7a;
    color: #fff;
}

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

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

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

.main-header {
    background-color: #fff;
    padding: 24px 40px;
    border-bottom: 1px solid #e8e0d8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #d4af7a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af7a;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    margin-top: 0;
    background-color: #f9f6f2;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 400;
}

.hero-text-block .accent {
    color: #d4af7a;
    font-style: italic;
}

.hero-text-block p {
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.6;
}

.hero-image-offset {
    flex: 1.2;
    position: relative;
    margin-top: 40px;
    margin-right: 60px;
    margin-bottom: -40px;
    overflow: hidden;
    background-color: #e8e0d8;
}

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

.intro-stagger {
    display: flex;
    gap: 80px;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.text-column-left {
    flex: 1.3;
}

.text-column-left h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.3;
}

.text-column-left p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #4a4a4a;
}

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

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

.offset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    background-color: #fff;
    position: relative;
}

.grid-item.large {
    flex: 1 1 55%;
    min-height: 500px;
    overflow: hidden;
    background-color: #e8e0d8;
}

.grid-item.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 40px 30px;
}

.overlay-text h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 400;
}

.overlay-text p {
    font-size: 16px;
    line-height: 1.6;
}

.grid-item.small-top {
    flex: 1 1 35%;
    padding: 40px;
    background-color: #f9f6f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-item.small-top h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.grid-item.small-top p {
    color: #5a5a5a;
    line-height: 1.7;
}

.grid-item.small-bottom {
    flex: 1 1 100%;
    padding: 50px;
    background-color: #3a3a3a;
    color: #fff;
    text-align: center;
}

.grid-item.small-bottom p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.link-arrow {
    color: #d4af7a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(8px);
}

.services-asymmetric {
    padding: 100px 60px;
    background-color: #fff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
    margin-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.services-header-offset p {
    font-size: 18px;
    color: #5a5a5a;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #f9f6f2;
    padding: 0;
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

.service-image {
    flex: 1;
    min-height: 320px;
    overflow: hidden;
    background-color: #e8e0d8;
}

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

.service-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 400;
}

.service-card > div:last-child {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-card p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4af7a;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #3a3a3a;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #d4af7a;
    transform: translateX(4px);
}

.trust-block {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: #f9f6f2;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-offset {
    flex: 1.2;
    padding: 50px;
    background-color: #fff;
    border-left: 4px solid #d4af7a;
    margin-left: 80px;
}

.testimonial-offset blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #2c2c2c;
}

.testimonial-offset cite {
    display: block;
    margin-top: 24px;
    font-size: 15px;
    font-style: normal;
    color: #888;
}

.process-snippet {
    flex: 1;
}

.process-snippet h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.process-snippet p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.7;
}

.form-section-offset {
    padding: 100px 60px;
    background-color: #fff;
}

.form-intro {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 200px;
}

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

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

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f9f6f2;
    margin-right: 100px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.btn-submit {
    background-color: #3a3a3a;
    color: #fff;
    border: none;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.final-cta-offset {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: #3a3a3a;
    min-height: 500px;
}

.cta-visual {
    flex: 1;
    background-color: #e8e0d8;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text {
    flex: 1;
    padding: 80px;
    color: #fff;
}

.cta-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 400;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #d4af7a;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #d4af7a;
    transform: translateX(4px);
}

.main-footer {
    background-color: #2c2c2c;
    color: #c0c0c0;
    padding: 60px 60px 30px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #d4af7a;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background-color: #3a3a3a;
    border-left: 3px solid #d4af7a;
    font-size: 13px;
    line-height: 1.7;
    color: #d0d0d0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #888;
}

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

    .hero-image-offset {
        margin: 20px;
    }

    .intro-stagger,
    .trust-block,
    .final-cta-offset {
        flex-direction: column;
    }

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

    .grid-item.large,
    .grid-item.small-top {
        flex: 1 1 100%;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .form-intro {
        margin-left: 0;
    }

    .contact-form {
        margin-right: 0;
    }

    .testimonial-offset {
        margin-left: 0;
    }
}