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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.floating-nav {
    position: fixed;
    top: 60px;
    left: 40px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #c17a3e;
    margin-bottom: 20px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 100px 60px 100px 280px;
    background-color: #fff9f4;
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 54px;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.hero-content-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background-color: #c17a3e;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #a66932;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: 40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8dfd6;
}

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    padding: 120px 60px 120px 280px;
    gap: 60px;
    background-color: white;
}

.intro-card-overlap {
    flex: 1;
    background-color: #f4ede4;
    padding: 50px;
    border-radius: 8px;
    margin-top: 80px;
}

.intro-card-overlap h2 {
    font-size: 38px;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.intro-card-overlap p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    margin-top: -40px;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #d4c4b0;
}

.services-offset {
    padding: 100px 60px 120px 280px;
    background-color: #fafafa;
}

.section-title-right {
    text-align: right;
    margin-bottom: 60px;
}

.section-title-right h2 {
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.section-title-right p {
    font-size: 20px;
    color: #777;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 0 0 calc(33.333% - 20px);
    transition: transform 0.3s;
}

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 30px;
}

.service-card.offset-center {
    margin-top: 0;
}

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

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

.service-card h3 {
    font-size: 24px;
    color: #2c2c2c;
    padding: 20px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    padding: 0 24px 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #c17a3e;
    padding: 0 24px 16px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-diagonal {
    padding: 120px 60px 120px 280px;
    background: linear-gradient(135deg, #fff9f4 0%, #f4ede4 100%);
}

.form-container {
    max-width: 600px;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-left: 120px;
}

.form-container h2 {
    font-size: 36px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.form-container > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #c17a3e;
}

.form-group input[readonly] {
    background-color: #f9f9f9;
    color: #c17a3e;
    font-weight: 600;
}

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

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

.testimonials-overlap {
    padding: 100px 60px 120px 280px;
    background-color: white;
}

.testimonials-overlap h2 {
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #f4ede4;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #c17a3e;
}

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

.testimonial cite {
    font-size: 15px;
    color: #777;
    font-style: normal;
}

footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 60px 30px 280px;
}

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

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

.footer-column p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: #c17a3e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.97);
    color: white;
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

.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: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

@media (max-width: 1200px) {
    .floating-nav {
        position: static;
        margin: 20px;
    }

    .hero-offset,
    .intro-asymmetric,
    .services-offset,
    .form-section-diagonal,
    .testimonials-overlap,
    footer {
        padding-left: 60px;
    }

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

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

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

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-card-overlap {
        margin-top: 0;
    }

    .intro-visual {
        margin-top: 20px;
    }

    .services-offset {
        padding: 60px 30px;
    }

    .service-card {
        flex: 0 0 100%;
        margin-top: 0 !important;
    }

    .form-section-diagonal {
        padding: 60px 30px;
    }

    .testimonials-overlap {
        padding: 60px 30px;
    }

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

    footer {
        padding: 40px 30px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}