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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-medium: #5D4037;
    --bg-light: #FFF8F0;
    --bg-white: #FFFFFF;
    --border-color: #E0D5C7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.wide-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-notice {
    font-size: 11px;
    color: var(--text-medium);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

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

nav a:hover {
    color: var(--primary-color);
}

.hero-section {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-section .subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 480px;
    margin: 48px auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.content-section {
    padding: 60px 0;
}

.section-intro {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 32px;
    color: var(--text-medium);
}

.content-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 28px;
    margin: 48px 0 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.content-section p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.9;
}

.inline-image {
    width: 100%;
    height: 400px;
    margin: 48px 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-inline {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    margin: 32px 0;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: var(--secondary-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 60px 0;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-card h3 {
    font-size: 26px;
    margin: 0 0 16px 0;
    color: var(--text-dark);
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
}

.service-price-label {
    font-size: 14px;
    color: var(--text-medium);
    display: block;
    margin-bottom: 8px;
}

.form-section {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 34px;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 16px;
}

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

.contact-info {
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info .email-display {
    color: var(--text-medium);
    font-style: italic;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-links {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.footer-column a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 248, 240, 0.2);
    padding-top: 24px;
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 248, 240, 0.7);
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 32px;
    border-left: 4px solid var(--accent-color);
    margin: 48px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-container p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-container .cta-inline {
    margin-top: 40px;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-page p,
.legal-page ul {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 32px;
}

.legal-page ul li {
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 24, 16, 0.98);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1000;
    display: none;
    border-top: 2px solid var(--accent-color);
}

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

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

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

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

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

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .ad-notice {
        margin: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .content-section h2 {
        font-size: 30px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
