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

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

.main-nav {
    background-color: #1a4d2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #d4edda;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4caf50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #45a049;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #1a4d2e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a4d2e;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #1a4d2e;
    color: #ffffff;
}

.intro-split {
    display: flex;
    background-color: #ffffff;
}

.intro-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-width: 400px;
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 1rem;
    display: block;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: #1a4d2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-select:hover {
    background-color: #2d5f3e;
}

.cta-block {
    text-align: center;
    margin-top: 3rem;
}

.cta-block p {
    font-size: 1.1rem;
    color: #555;
}

.cta-block a {
    color: #1a4d2e;
    font-weight: 600;
    text-decoration: underline;
}

.trust-split {
    display: flex;
    background-color: #ffffff;
}

.trust-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.trust-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.trust-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.selected-service-display {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #d4edda;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #d4edda;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #d4edda;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a4d2e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1001;
    display: none;
}

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

.cookie-content p {
    flex: 1;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie.accept {
    background-color: #4caf50;
    color: #ffffff;
}

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

.btn-cookie:hover {
    opacity: 0.9;
}

.page-hero {
    position: relative;
    height: 400px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 77, 46, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-overlay p {
    font-size: 1.3rem;
}

.about-split {
    display: flex;
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.about-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 300px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.value-item p {
    color: #555;
    line-height: 1.7;
}

.experience-split {
    display: flex;
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.experience-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.experience-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.experience-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detailed {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.service-img {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-weight: 600;
    color: #333;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4caf50;
}

.contact-split {
    display: flex;
    background-color: #ffffff;
    padding: 4rem 2rem;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a4d2e;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

.additional-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.additional-info p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.additional-info a {
    color: #1a4d2e;
    font-weight: 600;
    text-decoration: underline;
}

.thanks-section {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    gap: 3rem;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a4d2e;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a4d2e;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a4d2e;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a4d2e;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: #1a4d2e;
    font-weight: 600;
}

.legal-page em {
    display: block;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #777;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split,
    .experience-split,
    .contact-split,
    .thanks-section,
    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}