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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navigation {
    background-color: #2c5530;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c5530;
    color: #fff;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #ddd;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #6b9b6f;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c5530;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid #2c5530;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.intro-left {
    flex: 1;
    background-color: #e8ede9;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5530;
}

.intro-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.text-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #6b9b6f;
}

.services-grid {
    background-color: #f9faf9;
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c5530;
}

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

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8ede9;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #2c5530;
}

.service-card p {
    padding: 0 25px;
    color: #666;
    flex-grow: 1;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5530;
    padding: 20px 25px 15px;
}

.select-service {
    background-color: #6b9b6f;
    color: #fff;
    border: none;
    padding: 14px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 25px 25px;
    border-radius: 6px;
}

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

.booking-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.booking-content {
    flex: 1;
    padding: 60px;
    background-color: #2c5530;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.booking-form-wrapper {
    flex: 1;
    padding: 60px;
    background-color: #f9faf9;
}

.booking-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b9b6f;
}

.submit-button {
    background-color: #6b9b6f;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #5a8a5e;
}

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.trust-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5530;
}

.trust-left p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.trust-right {
    flex: 1;
    background-color: #e8ede9;
    overflow: hidden;
}

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

.cta-final {
    background-color: #6b9b6f;
    color: #fff;
    text-align: center;
    padding: 80px 40px;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.footer {
    background-color: #1a3a1d;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a1d;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #6b9b6f;
    color: #fff;
}

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

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

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

.page-header {
    background-color: #2c5530;
    color: #fff;
    text-align: center;
    padding: 80px 40px;
}

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

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #555;
}

.price-info {
    background-color: #f9faf9;
    padding: 20px 25px;
    border-radius: 6px;
    border-left: 4px solid #6b9b6f;
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-right: 10px;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5530;
}

.service-detail-image {
    flex: 1;
    background-color: #e8ede9;
    overflow: hidden;
    border-radius: 8px;
}

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

.rental-info {
    background-color: #f9faf9;
    padding: 80px 40px;
}

.rental-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c5530;
}

.rental-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.rental-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #6b9b6f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.rental-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5530;
}

.rental-step p {
    color: #666;
    line-height: 1.6;
}

.cta-services {
    text-align: center;
    padding: 80px 40px;
}

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #2c5530;
}

.about-story {
    display: flex;
    flex-direction: column;
}

.story-image {
    width: 100%;
    height: 400px;
    background-color: #e8ede9;
    overflow: hidden;
}

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

.story-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5530;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-section {
    background-color: #f9faf9;
    padding: 80px 40px;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c5530;
}

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

.team-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.team-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5530;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.team-image {
    flex: 1;
    background-color: #e8ede9;
    overflow: hidden;
}

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

.mission-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c5530;
}

.mission-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.experience-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #f9faf9;
}

.experience-left {
    flex: 1;
    background-color: #e8ede9;
    overflow: hidden;
}

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

.experience-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c5530;
}

.experience-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.cta-about {
    text-align: center;
    padding: 80px 40px;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #2c5530;
}

.contact-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: #f9faf9;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c5530;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c5530;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e8ede9;
    overflow: hidden;
}

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

.directions-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.directions-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c5530;
    text-align: center;
}

.directions-section > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.directions-info {
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
    background-color: #f9faf9;
    padding: 35px;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5530;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

.faq-section {
    background-color: #f9faf9;
    padding: 80px 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #2c5530;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 35px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5530;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.cta-contact {
    text-align: center;
    padding: 80px 40px;
}

.cta-contact h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #6b9b6f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c5530;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.thanks-details {
    background-color: #f9faf9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c5530;
}

.next-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.next-step {
    flex: 1;
    max-width: 220px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #6b9b6f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.next-step p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c5530;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5530;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c5530;
}

.legal-page p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-section,
    .booking-section,
    .trust-section,
    .service-detail-item,
    .team-section,
    .experience-section,
    .contact-section {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-right,
    .booking-content,
    .booking-form-wrapper,
    .trust-left,
    .service-detail-content,
    .team-content,
    .experience-right,
    .contact-info {
        padding: 40px 30px;
    }

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

    .section-header h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .service-cards {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .rental-steps,
    .next-steps {
        flex-direction: column;
    }

    .directions-info {
        flex-direction: column;
    }
}