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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #27ae60;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
    background-color: #2c5f4a;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #229954;
}

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

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

.intro-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f4a;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

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

.services-grid {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f4a;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 24px);
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 250px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f4a;
}

.card-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #229954;
}

.form-section {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f4a;
}

.form-description p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 6px;
}

.selected-service-display {
    padding: 15px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #155724;
    display: none;
}

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

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #27ae60;
}

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

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-indicators {
    display: flex;
    padding: 80px 5%;
    gap: 50px;
    background-color: #2c5f4a;
    color: #ffffff;
}

.indicator {
    flex: 1;
}

.indicator h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.indicator p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-column p {
    color: #b8b8b8;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b8b8b8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-header {
    padding: 80px 5%;
    text-align: center;
    background-color: #2c5f4a;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1.3;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f4a;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #f0f4f0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.values-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c5f4a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f4a;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.process-section {
    padding: 80px 5%;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c5f4a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 6px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c5f4a;
}

.step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #2c5f4a;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #229954;
}

.services-detail {
    padding: 60px 5%;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-block.left {
    flex-direction: row;
}

.service-block.right {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f4a;
}

.service-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 25px;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    background-color: #f0f4f0;
    height: 400px;
}

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

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5f4a;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f4a;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-note {
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #f0f4f0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.map-placeholder {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.map-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c5f4a;
}

.map-info p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 5%;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c5f4a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
}

.selected-service-confirmation {
    padding: 25px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 40px;
}

.selected-service-confirmation p {
    font-size: 16px;
    color: #155724;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f4a;
}

.next-steps ul {
    list-style-position: inside;
    color: #4a5568;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #229954;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c5f4a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f4a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f4a;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-section,
    .about-split,
    .service-block,
    .contact-split {
        flex-direction: column;
    }

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

    .service-block.right {
        flex-direction: column;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .trust-indicators {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .value-item {
        flex: 0 0 100%;
    }
}