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

:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BC62;
    --accent-color: #F4A259;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 60px 8%;
    margin-left: 3%;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.65;
}

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    width: 58%;
    height: 92%;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    background-color: #e5e5e5;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

.intro-stagger {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 90px 8%;
    background-color: var(--bg-white);
}

.intro-block-left {
    flex: 1;
    max-width: 520px;
    margin-left: 7%;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-block-left p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
}

.intro-image-right {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
    background-color: #e5e5e5;
}

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

.services-asymmetric {
    padding: 100px 6%;
    background-color: var(--bg-light);
}

.section-header-offset {
    margin-left: 12%;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.card-offset-3 {
    margin-left: 5%;
}

.card-offset-4 {
    margin-left: 15%;
    flex-direction: row-reverse;
}

.card-offset-5 {
    margin-left: 8%;
}

.service-image {
    flex: 0 0 45%;
    background-color: #e5e5e5;
}

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

.service-content {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.service-select:hover {
    background-color: #e08d42;
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 100px 6%;
    background-color: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 620px;
    margin-left: 18%;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 6px solid var(--primary-color);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: var(--text-light);
    cursor: not-allowed;
}

.form-submit {
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.form-submit:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 6%;
    background-color: var(--bg-light);
}

.trust-content-overlap {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content-overlap h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.testimonials-stagger {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 35px 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-offset-1 {
    margin-left: 0;
}

.testimonial-offset-2 {
    margin-left: 12%;
}

.testimonial-offset-3 {
    margin-left: 6%;
}

.testimonial p {
    font-size: 17px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section-bottom {
    padding: 90px 6%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content-irregular {
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 42px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 6% 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    padding: 25px 6%;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    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;
    gap: 30px;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #666;
    color: white;
}

.cookie-reject:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.page-hero-small {
    padding: 80px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-hero-small p {
    font-size: 19px;
    color: var(--text-light);
}

.about-story-asymmetric {
    display: flex;
    gap: 60px;
    padding: 90px 6%;
    align-items: center;
}

.story-text-offset {
    flex: 1;
    max-width: 550px;
}

.story-text-offset h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-text-offset p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.75;
}

.story-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(20px) rotate(-1deg);
    background-color: #e5e5e5;
}

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

.values-section {
    padding: 90px 6%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.values-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.value-offset-1 {
    margin-left: 0;
}

.value-offset-2 {
    margin-left: 15%;
}

.value-offset-3 {
    margin-left: 8%;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-section-offset {
    padding: 90px 6%;
    background-color: var(--bg-white);
}

.mission-content {
    max-width: 700px;
    margin-left: 10%;
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.mission-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.75;
}

.team-approach {
    padding: 90px 6%;
    background-color: var(--bg-light);
}

.team-approach h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.approach-item {
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.approach-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-full-list {
    padding: 80px 6%;
}

.services-intro-offset {
    max-width: 750px;
    margin-left: 8%;
    margin-bottom: 60px;
}

.services-intro-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-intro-offset p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 45px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-layout-1 {
    margin-left: 0;
}

.card-layout-2 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

.card-layout-3 {
    margin-left: 4%;
}

.card-layout-4 {
    margin-left: 12%;
    flex-direction: row-reverse;
}

.card-layout-5 {
    margin-left: 6%;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e5e5e5;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.75;
}

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

.service-features li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-book-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
}

.service-book-btn:hover {
    background-color: #e08d42;
    transform: translateY(-2px);
}

.services-benefits {
    padding: 90px 6%;
    background-color: var(--bg-light);
}

.services-benefits h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.benefits-grid {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-section-asymmetric {
    display: flex;
    gap: 60px;
    padding: 80px 6%;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    transform: translateY(30px) rotate(1deg);
    background-color: #e5e5e5;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-additional-info {
    padding: 90px 6%;
    background-color: var(--bg-light);
}

.contact-additional-info h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.faq-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #e08d42;
    transform: translateY(-2px);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-page li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e4520;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        padding: 40px 6%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image-overlay {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        border-radius: 8px;
    }

    .intro-stagger {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-left {
        margin-left: 0;
    }

    .intro-image-right {
        transform: none;
    }

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

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .story-image-overlap {
        transform: none;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3 {
        margin-left: 0;
    }

    .mission-content {
        margin-left: 0;
    }

    .services-intro-offset {
        margin-left: 0;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .card-layout-1,
    .card-layout-2,
    .card-layout-3,
    .card-layout-4,
    .card-layout-5 {
        margin-left: 0;
    }

    .service-detail-image {
        flex: 0 0 250px;
    }

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

    .contact-section-asymmetric {
        flex-direction: column;
    }

    .contact-map-placeholder {
        transform: none;
    }

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