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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f5f2;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #234d23;
    transform: translateY(-2px);
}

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

.intro-image-side {
    flex: 1;
    background-color: #dbd7d2;
}

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

.intro-text-side {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-text-side h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.intro-text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.why-choose {
    padding: 6rem 2rem;
    background-color: #f8f5f2;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

.features-split-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    margin-bottom: 4rem;
    align-items: stretch;
    gap: 0;
}

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

.feature-image {
    flex: 1;
    background-color: #dbd7d2;
}

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

.feature-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-split-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: stretch;
    gap: 0;
}

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

.service-visual {
    flex: 1;
    background-color: #e8e4df;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f5f2;
}

.service-details h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 0.9rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #234d23;
    transform: translateY(-2px);
}

.process-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.process-text {
    flex: 1.2;
    padding: 5rem 4rem;
    background-color: #f8f5f2;
}

.process-text h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    margin-bottom: 3rem;
}

.step {
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.process-image {
    flex: 1;
    background-color: #dbd7d2;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #f8f5f2;
    padding: 3rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #234d23;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    color: #2c5f2d;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.7;
    color: #b8b8b8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2c5f2d;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #999;
}

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

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

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

.cookie-content {
    max-width: 1400px;
    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-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #234d23;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .feature-card,
    .service-item,
    .process-split {
        flex-direction: column;
    }

    .feature-card.reverse,
    .service-item.reverse {
        flex-direction: column;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}