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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: #2c3e50;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7fa99b;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.7), rgba(127,169,155,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 24px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.intro-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.features-section {
    padding: 0;
}

.feature-block {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.feature-visual {
    flex: 1;
    background-color: #d4e3e0;
}

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

.feature-content {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
}

.services-preview {
    padding: 100px 24px;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

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

.service-card h4 {
    padding: 20px 20px 12px 20px;
    font-size: 20px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 16px 20px;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.price-tag {
    padding: 0 20px 16px 20px;
    font-size: 22px;
    font-weight: 700;
    color: #7fa99b;
}

.select-service-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1a252f;
}

.values-section {
    padding: 100px 24px;
    background: #f8f9fa;
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-number {
    font-size: 48px;
    font-weight: 700;
    color: #7fa99b;
    line-height: 1;
    min-width: 80px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.reservation-section {
    padding: 100px 24px;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 32px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.location-section {
    padding: 80px 24px;
    background: #2c3e50;
    color: #ffffff;
}

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

.location-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.location-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.main-footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 24px 24px 24px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a252f;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 24px;
    background: #7fa99b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #6a8f82;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 24px;
}

.thanks-container {
    max-width: 600px;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-container a {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #1a252f;
}

.legal-page {
    padding: 80px 24px;
    background: #ffffff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .nav-menu {
        gap: 16px;
    }

    .feature-block {
        flex-direction: column;
    }

    .services-grid {
        gap: 24px;
    }

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

    .value-item {
        flex-direction: column;
    }

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

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