* {
    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;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: opacity 0.3s;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a4a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2c7a4a;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c7a4a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.intro-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #cbd5e0;
}

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

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #546e7a;
}

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

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

.section-header-center h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #546e7a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.service-details {
    padding: 1.5rem;
}

.service-details h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-details p {
    color: #546e7a;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c7a4a;
    margin-bottom: 1rem;
}

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

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

.booking-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-left p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.booking-benefits {
    list-style: disc;
    padding-left: 1.5rem;
}

.booking-benefits li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a4a;
}

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

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

.why-choose {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-split {
    display: flex;
    gap: 3rem;
}

.feature-item {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ecf0f1;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #95a5a6;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.page-hero {
    background-color: #2c7a4a;
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content-center h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.25rem;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #cbd5e0;
}

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

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.mission-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c7a4a;
}

.mission-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-header p {
    font-size: 1.125rem;
    color: #546e7a;
}

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.team-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #cbd5e0;
}

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text p {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

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

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.values-list {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
}

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

.value-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.services-detail {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-full {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.service-split {
    display: flex;
    gap: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-info h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 1.5rem;
}

.feature-list li {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.service-visual {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a4a;
}

.price-unit {
    font-size: 1rem;
    color: #7f8c8d;
    margin-left: 0.5rem;
}

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

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

.rental-info {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

.detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c7a4a;
}

.detail-item p {
    font-size: 1.0625rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #2c7a4a;
}

.contact-note p {
    font-size: 0.9375rem;
    color: #546e7a;
}

.contact-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #cbd5e0;
}

.how-to-reach {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.reach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.reach-split {
    display: flex;
    gap: 3rem;
}

.reach-text {
    flex: 1;
}

.reach-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reach-text p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 600px;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c7a4a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step-item p {
    font-size: 0.9375rem;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2c7a4a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #ecf0f1;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-container ul li {
    list-style: disc;
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c7a4a;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #236039;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .story-split,
    .team-split,
    .contact-split,
    .service-split {
        flex-direction: column;
    }

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

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

    .features-split,
    .mission-grid,
    .values-list,
    .info-grid,
    .reach-split,
    .steps-grid {
        flex-direction: column;
    }

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

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