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

:root {
    --primary: #2C1810;
    --secondary: #8B6F47;
    --accent: #D4AF37;
    --light: #F5F1E8;
    --dark: #1A1110;
    --text: #3D3D3D;
    --border: #E0D5C7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--dark);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #444;
    border-radius: 3px;
    margin-left: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #fff;
    transition: color 0.3s;
    font-weight: 500;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}

.hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--accent);
}

.hero-left p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #E5E5E5;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #F0C744;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.section-split {
    display: flex;
    align-items: stretch;
}

.split-content {
    flex: 1;
    padding: 5rem 3rem;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: var(--secondary);
}

.split-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.split-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.service-card-split {
    display: flex;
    flex: 1 1 calc(50% - 1rem);
    min-width: 450px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-img {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary);
}

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.form-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    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;
}

.contact-info {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
}

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

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

.disclaimer {
    background: #FFF9E6;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 3rem 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.page-header {
    background: var(--primary);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--accent);
}

.page-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 1.5rem 0 0.8rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.thanks-container {
    text-align: center;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 17, 16, 0.97);
    color: #fff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent);
    color: var(--dark);
}

.btn-accept:hover {
    background: #F0C744;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.about-intro {
    background: #fff;
    padding: 5rem 3rem;
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

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

    .hero-left,
    .split-content {
        padding: 3rem 2rem;
    }

    .hero-right,
    .split-image {
        min-height: 400px;
    }

    .service-card-split {
        flex-direction: column;
        min-width: 100%;
    }

    .service-img {
        min-height: 250px;
    }

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

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }
}
