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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4e;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

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

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

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

.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-overlay-text::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    border-radius: 8px;
}

.hero-overlay-text h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.story-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f4e;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.immersive-visual {
    width: 100%;
    height: 600px;
    background-color: #34495e;
}

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

.value-proposition {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.value-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.value-text {
    flex: 1;
    min-width: 300px;
}

.value-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c5f4e;
}

.value-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-visual {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.inline-cta {
    display: inline-block;
    margin-top: 15px;
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #27ae60;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #229954;
}

.insight-block {
    padding: 80px 30px;
    background-color: #2c5f4e;
    color: white;
}

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

.insight-wrapper h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

.insight-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-reveal {
    padding: 100px 30px;
    background-color: #ffffff;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f4e;
}

.services-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f4e;
}

.service-info p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #34495e;
}

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

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

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

.testimonial-visual {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.testimonial-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial-content blockquote {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: white;
    border-left: 5px solid #27ae60;
    border-radius: 5px;
    font-style: italic;
}

.testimonial-content blockquote p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-content blockquote footer {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.booking-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.booking-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.booking-wrapper h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.booking-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #7f8c8d;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 28px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 30px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    margin-top: 70px;
    padding: 100px 30px;
    background: linear-gradient(135deg, #2c5f4e 0%, #27ae60 100%);
    color: white;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 20px;
}

.about-story {
    padding: 80px 30px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text-wide {
    flex: 1;
    min-width: 300px;
}

.about-text-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f4e;
}

.about-text-wide p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

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

.philosophy-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f4e;
}

.philosophy-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.philosophy-item p {
    font-size: 15px;
    line-height: 1.7;
}

.team-simple {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f4e;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-block {
    padding: 80px 30px;
    background-color: #27ae60;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.services-detailed {
    padding: 50px 30px 80px;
    background-color: #ffffff;
}

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

.services-intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.service-detail-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price-box {
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.booking-cta-section {
    padding: 60px 30px;
    background-color: #ecf0f1;
}

.booking-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5f4e;
}

.booking-cta-content p {
    font-size: 17px;
    color: #34495e;
}

.contact-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f4e;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-text-block {
    flex: 1;
    min-width: 300px;
}

.contact-text-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.contact-text-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-text-block a {
    color: #27ae60;
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 30px;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

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

.thanks-main {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    padding: 20px;
    margin: 25px 0;
    background-color: #ecf0f1;
    border-radius: 5px;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-secondary {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 50px 30px 80px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f4e;
}

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #27ae60;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #bdc3c7;
}

.cookies-table th {
    background-color: #ecf0f1;
    font-weight: 600;
}

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

    .hero-overlay-text p {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .value-content,
    .about-container,
    .contact-wrapper {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column !important;
    }

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