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

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

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #3e2723;
}

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

.nav-links a {
    text-decoration: none;
    color: #5d4037;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #efebe9;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #3e2723;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5d4037;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d7ccc8;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #5d4037;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #4e342e;
}

.intro-section {
    padding: 100px 40px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-image-left,
.split-image-right {
    flex: 1;
    position: relative;
    background-color: #d7ccc8;
}

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

.split-text-right,
.split-text-left {
    flex: 1;
}

.split-text-right h2,
.split-text-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #3e2723;
}

.split-text-right p,
.split-text-left p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5d4037;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fafafa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #3e2723;
}

.section-header-center p {
    font-size: 18px;
    color: #6d4c41;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #3e2723;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px 20px;
    color: #5d4037;
    flex-grow: 1;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    margin: 0 20px 16px 20px;
    color: #6d4c41;
}

.btn-service {
    margin: 0 20px 20px 20px;
    padding: 12px 24px;
    background-color: #8d6e63;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #6d4c41;
}

.cta-inline {
    padding: 100px 40px;
    background-color: #3e2723;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #d7ccc8;
}

.process-section {
    padding: 100px 40px;
}

.process-list {
    list-style: none;
    padding-left: 0;
}

.process-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: #5d4037;
}

.process-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8d6e63;
    font-weight: 700;
}

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

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-centered h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #3e2723;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8d6e63;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #5d4037;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: #3e2723;
    color: #d7ccc8;
    padding: 60px 40px 20px 40px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #d7ccc8;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #5d4037;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #8d6e63;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    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: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c2c2c;
}

.cookie-content a {
    color: #5d4037;
}

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

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

.btn-accept {
    background-color: #5d4037;
    color: #fff;
}

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

.btn-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

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