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

:root {
    --color-primary: #2c5f4f;
    --color-primary-dark: #1e4437;
    --color-accent: #e8a871;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-light: #f9f9f9;
    --color-border: #e0e0e0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

.main-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) 2rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.btn-cta {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.split-info {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.split-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text-right,
.split-text-left {
    flex: 1;
}

.split-text-right h2,
.split-text-left h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text-right p,
.split-text-left p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

.split-info.reverse .split-container {
    flex-direction: row-reverse;
}

.split-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.btn-inline {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.btn-inline:hover {
    color: var(--color-primary-dark);
}

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

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

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

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

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1rem 0;
}

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

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

.form-section {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg) 2rem;
    background-color: var(--color-bg-light);
}

.form-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

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

.selected-service-display {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.selected-service-display h3 {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    max-width: 1000px;
    margin: var(--spacing-xl) auto;
    padding: 2rem;
    background-color: #fff8f0;
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

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

.disclaimer-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.main-footer {
    background-color: #1e1e1e;
    color: #cccccc;
    margin-top: var(--spacing-xl);
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #555;
    color: white;
}

.btn-secondary:hover {
    background-color: #666;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
}

.content-centered {
    max-width: 900px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.centered-text-block h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.centered-text-block p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    max-width: 1200px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-bg-light);
    border-radius: 8px;
}

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

.value-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.cta-section {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.cta-content-wide {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-content-wide h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-wide p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-content-wide .btn-cta {
    background-color: white;
    color: var(--color-primary);
}

.cta-content-wide .btn-cta:hover {
    background-color: #f5f5f5;
}

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

.service-detail-item {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--color-bg-light);
    border-radius: 6px;
}

.price-label {
    font-weight: 600;
    color: var(--color-text);
    margin-right: 0.5rem;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.service-detail-item.reverse .service-detail-content {
    flex-direction: row-reverse;
}

.contact-info-section {
    max-width: 1400px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.contact-details > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    max-width: 1000px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
}

.location-description {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
}

.location-description p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: var(--spacing-xl) auto;
    padding: 0 2rem;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.thanks-service-info {
    background-color: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-secondary-link {
    display: inline-block;
    color: var(--color-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

.legal-content {
    line-height: 1.8;
}

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

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content ul li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
    }

    .ad-notice {
        margin: 0 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .split-container,
    .form-split,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .section-header-center h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-detail-image {
        height: 300px;
    }

    .contact-visual {
        height: 300px;
    }
}
