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

:root {
    --primary: #2c2416;
    --secondary: #8b7355;
    --accent: #c9a068;
    --light: #f8f5f0;
    --dark: #1a1510;
    --gray: #6b6b6b;
}

body {
    font-family: 'Georgia', serif;
    color: var(--primary);
    line-height: 1.6;
    background-color: var(--light);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ad-notice {
    background: #fffbf0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    border-bottom: 1px solid #e8e8e8;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.6), rgba(201, 160, 104, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 62px;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--accent);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cta-button:hover {
    background: transparent;
    border-color: white;
    color: white;
}

.story-section {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.story-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--primary);
}

.story-section p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
}

.image-block {
    width: 100%;
    height: 500px;
    margin: 60px 0;
    position: relative;
    background-color: var(--secondary);
}

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

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.split-image {
    flex: 1;
    position: relative;
    background-color: var(--secondary);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content h3 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--primary);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    cursor: pointer;
}

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

.card-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--secondary);
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 32px;
}

.card-content h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 400;
}

.card-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 32px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    transition: background 0.3s;
    font-family: inherit;
}

.select-service-btn:hover {
    background: var(--accent);
}

.full-width-section {
    padding: 120px 5%;
    background: var(--primary);
    color: white;
    text-align: center;
}

.full-width-section h2 {
    font-size: 46px;
    margin-bottom: 30px;
    font-weight: 400;
}

.full-width-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.testimonials {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.testimonial {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}

.form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f5f0, #ffffff);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray);
    font-size: 17px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: inherit;
    font-weight: 500;
}

.submit-btn:hover {
    background: var(--primary);
}

.contact-info-section {
    padding: 80px 5%;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-column {
    flex: 1;
    min-width: 280px;
}

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

.contact-column p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 12px;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

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

.footer-section a:hover {
    color: var(--accent);
}

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

.disclaimer {
    background: #fff9e6;
    padding: 40px 5%;
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    flex: 1;
    max-width: 900px;
}

.cookie-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 16px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.cookie-accept {
    background: var(--accent);
    color: white;
}

.cookie-reject {
    background: #e0e0e0;
    color: var(--primary);
}

.cookie-accept:hover {
    background: var(--primary);
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.page-header {
    padding: 140px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    margin: 40px 0 20px;
    font-weight: 400;
    color: var(--primary);
}

.content-section h3 {
    font-size: 26px;
    margin: 30px 0 16px;
    font-weight: 400;
    color: var(--primary);
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.content-section ul {
    margin: 20px 0 20px 30px;
    color: var(--gray);
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-content .cta-button {
    margin-top: 30px;
}

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

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

    .split-section {
        flex-direction: column;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

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

    .form-container {
        padding: 40px 30px;
    }
}
