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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-hero:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.value-split {
    display: flex;
    min-height: 600px;
}

.value-image {
    flex: 1;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.value-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--white);
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.value-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #ddd;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    background: var(--white);
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image-wrap {
    flex: 0 0 40%;
    background-color: var(--bg-light);
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.service-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

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

.services-link-wrap {
    text-align: center;
    margin-top: 3rem;
}

.link-underline {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.link-underline:hover {
    color: var(--secondary-color);
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-visual {
    flex: 0 0 35%;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-visual h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-visual p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 5rem 5%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

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

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

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.testimonials-split {
    padding: 5rem 5%;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.cta-full {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-full h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-full p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: var(--white);
    transform: scale(1.05);
}

.footer-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background: var(--bg-dark);
    color: var(--white);
    flex-wrap: wrap;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.disclaimer-footer {
    padding: 2rem 5%;
    background: var(--primary-color);
    color: #999;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: center;
}

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

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.content-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-page ul li {
    margin-bottom: 0.5rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 4rem 5%;
    background: var(--bg-dark);
    color: var(--white);
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-details {
    font-size: 1.1rem;
    line-height: 2;
}

.contact-details strong {
    color: var(--secondary-color);
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-map {
    flex: 1;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
}

.thanks-box {
    background: var(--white);
    padding: 4rem 3rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.thanks-box p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-box .btn-primary {
    margin-top: 2rem;
    text-decoration: none;
    display: inline-block;
}

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

    .service-card {
        flex-direction: column;
        min-width: 300px;
    }

    .service-image-wrap {
        flex: 0 0 250px;
    }

    .testimonials-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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