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

:root {
    --primary-color: #2c3e50;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 3px;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--primary-color);
    color: var(--bg-white);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #c49664;
    transform: translateY(-2px);
}

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

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

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

.intro-text {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.value-split {
    display: flex;
    background: var(--bg-light);
}

.value-text {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.value-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.benefit-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: var(--spacing-md);
}

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

.services-display {
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.services-display h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2rem;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a2a3a;
}

.select-service.selected {
    background: var(--accent-color);
}

.form-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) var(--spacing-lg);
}

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

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.form-info p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.selected-service-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.selected-service-box p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c49664;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.testimonials-split {
    display: flex;
}

.testimonial-text {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-text blockquote {
    margin-bottom: var(--spacing-lg);
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
}

.testimonial-text blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.testimonial-text cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

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

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

.site-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.875rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.thanks-container p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.confirmation-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.confirmation-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.confirmation-details p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-reverse,
    .value-split,
    .testimonials-split,
    .form-split {
        flex-direction: column;
    }

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

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}