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

:root {
    --primary: #2c2416;
    --accent: #d4a574;
    --light: #f8f6f2;
    --dark: #1a1410;
    --gray: #6b6b6b;
}

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

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

.ad-notice {
    background: #fff3e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #8b6914;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-overlay h1 {
    font-size: 68px;
    font-weight: normal;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-family: 'Arial', sans-serif;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
}

.cta-primary:hover {
    background: #c29660;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

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

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

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

.split-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.3;
}

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

.image-grid-section {
    padding: 100px 5%;
    background: var(--dark);
    color: white;
}

.grid-header {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.grid-header h2 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: normal;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-card-image {
    width: 100%;
    height: 280px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

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

.service-card-content {
    padding: 35px;
}

.service-card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: normal;
}

.service-card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.select-service-btn:hover {
    background: #c29660;
}

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

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--primary);
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Georgia', serif;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}

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

.selected-service-display {
    background: #f9f7f4;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    margin: 0;
    color: var(--primary);
}

.selected-service-display strong {
    color: var(--accent);
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 5% 40px;
}

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: normal;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

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

.disclaimer-section {
    background: #fff8f0;
    padding: 50px 5%;
    border-top: 1px solid #e0d5c7;
    border-bottom: 1px solid #e0d5c7;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 14px;
    color: #6b5d4f;
    line-height: 1.8;
}

.disclaimer-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 20, 16, 0.98);
    color: white;
    padding: 25px 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.cookie-accept:hover {
    background: #c29660;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: white;
}

.content-page {
    padding: 140px 5% 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
}

.content-page h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.content-page h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: normal;
}

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

.content-page ul,
.content-page ol {
    margin: 20px 0 20px 30px;
    line-height: 1.9;
}

.content-page li {
    margin-bottom: 10px;
    color: var(--gray);
}

.contact-info-block {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
}

.contact-info-block p {
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-info-block strong {
    color: var(--accent);
}

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

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: normal;
    color: var(--primary);
}

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

.thanks-service {
    background: #f9f7f4;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
}

.about-intro {
    padding: 140px 5% 80px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h1 {
    font-size: 58px;
    margin-bottom: 30px;
    font-weight: normal;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .section-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .split-content {
        padding: 50px 5%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}