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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c7a66b;
    --text-dark: #0f0f1e;
    --text-light: #f4f4f4;
    --border-light: #e0e0e0;
    --bg-light: #fafafa;
    --bg-section: #f8f6f3;
}

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

.ad-disclosure {
    background: var(--accent-color);
    color: var(--text-dark);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

header {
    background: var(--primary-color);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-section);
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #555;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--secondary-color);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 166, 107, 0.3);
}

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

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

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

.split-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.split-content ul {
    list-style: none;
    margin: 25px 0;
}

.split-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.split-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--bg-light);
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 40px;
    background: #fff;
}

.services-grid h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: var(--bg-section);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

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

.service-info {
    padding: 35px 30px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.service-price span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.select-service-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 14px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    max-width: 800px;
    margin: 90px auto;
    padding: 60px 50px;
    background: var(--bg-section);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-dark);
}

.form-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-light);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

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

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

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

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

.selected-service-display p {
    text-align: left;
    margin: 0;
    font-size: 15px;
    color: #555;
}

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

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 16px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 166, 107, 0.4);
}

.about-intro {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 40px;
    text-align: center;
}

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto 20px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: var(--bg-section);
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.legal-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px 80px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    color: #666;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 80px 60px;
    text-align: center;
    background: var(--bg-section);
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.thanks-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.thanks-service p {
    margin: 0;
    font-size: 16px;
}

footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

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

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

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

.disclaimer {
    background: #f9f7f4;
    border: 1px solid #e0d8c8;
    padding: 25px 30px;
    margin: 60px auto;
    max-width: 1200px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.disclaimer strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cookie-btn:hover {
    opacity: 0.8;
}

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

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

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

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        padding: 30px 0;
        transition: left 0.3s;
        align-items: center;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-actions {
        justify-content: stretch;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .services-grid h2 {
        font-size: 34px;
    }

    nav {
        padding: 15px 20px;
    }

    .hero-content,
    .split-content {
        padding: 50px 30px;
    }
}
