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

.main-nav {
    background-color: #1a3a2e;
    padding: 1.2rem 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 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8f3e8;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links a:hover {
    color: #9fc899;
}

.ad-notice {
    font-size: 0.8rem;
    color: #b8c9b8;
    padding: 0.4rem 0.8rem;
    border-left: 2px solid #4a6b5a;
    margin-left: 1rem;
}

.hero-section {
    background-color: #f4f7f4;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.85) 0%, rgba(74, 107, 90, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero-overlay p {
    font-size: 1.3rem;
    color: #e8f3e8;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #9fc899;
    color: #1a3a2e;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a3a2e;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    color: #4a5f5a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-section {
    background-color: #f9fbf9;
    padding: 6rem 2rem;
}

.philosophy-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-text {
    flex: 1;
    min-width: 400px;
}

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

.philosophy-text p {
    font-size: 1.1rem;
    color: #4a5f5a;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8f3e8;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    background-color: #1a3a2e;
    padding: 6rem 2rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    color: #e8f3e8;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.15rem;
    color: #b8c9b8;
    line-height: 1.7;
}

.service-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: #ffffff;
    display: flex;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-image {
    flex: 1;
    min-width: 350px;
    background-color: #e8f3e8;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-details h3 {
    font-size: 1.8rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 1.05rem;
    color: #4a5f5a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    color: #4a6b5a;
    font-weight: 700;
    display: block;
    margin-top: auto;
}

.booking-section {
    background-color: #e8f3e8;
    padding: 6rem 2rem;
}

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

.booking-content h2 {
    font-size: 2.5rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-content > p {
    font-size: 1.1rem;
    color: #4a5f5a;
    margin-bottom: 3rem;
    text-align: center;
}

.service-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #d4e4d4;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a3a2e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.testimonials-section {
    background-color: #4a6b5a;
    padding: 6rem 2rem;
}

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

.testimonials-wrapper h2 {
    font-size: 2.5rem;
    color: #e8f3e8;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: rgba(232, 243, 232, 0.1);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid #9fc899;
}

.testimonial p {
    font-size: 1.1rem;
    color: #e8f3e8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #b8c9b8;
    display: block;
}

.main-footer {
    background-color: #1a3a2e;
    color: #e8f3e8;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    color: #9fc899;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: #b8c9b8;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #b8c9b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e8f3e8;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #b8c9b8;
    margin-bottom: 0.8rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #8fa89f;
    line-height: 1.6;
    max-width: 900px;
    margin: 1.5rem auto 0;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #9fc899;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background-color: #9fc899;
    color: #1a3a2e;
}

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

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

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

.page-header {
    background-color: #1a3a2e;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #e8f3e8;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #b8c9b8;
}

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

.about-content-wide {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content-wide p {
    font-size: 1.2rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.about-visual {
    background-color: #e8f3e8;
}

.about-visual img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

.values-section {
    background-color: #f9fbf9;
    padding: 6rem 2rem;
}

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

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

.value-item h3 {
    font-size: 1.8rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5f5a;
    line-height: 1.8;
}

.process-section {
    background-color: #4a6b5a;
    padding: 6rem 2rem;
}

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

.process-wrapper h2 {
    font-size: 2.8rem;
    color: #e8f3e8;
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    background-color: rgba(232, 243, 232, 0.1);
    padding: 2.5rem;
    border-radius: 6px;
    border-left: 5px solid #9fc899;
}

.step-number {
    font-size: 3rem;
    color: #9fc899;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.8rem;
    color: #e8f3e8;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.1rem;
    color: #d4e4d4;
    line-height: 1.7;
}

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

.team-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.team-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8f3e8;
}

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

.team-text {
    flex: 1;
    min-width: 400px;
}

.team-text h2 {
    font-size: 2.3rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: #e8f3e8;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #4a5f5a;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a3a2e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-block:nth-child(even) {
    background-color: #f9fbf9;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    color: #4a5f5a;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a6b5a;
    font-weight: bold;
}

.service-pricing {
    background-color: #e8f3e8;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #4a6b5a;
}

.price {
    font-size: 2rem;
    color: #1a3a2e;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #4a5f5a;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8f3e8;
}

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

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

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

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

.contact-info h2 {
    font-size: 2.3rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a3a2e;
    margin-bottom: 0.7rem;
}

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

.contact-note {
    background-color: #f9fbf9;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #9fc899;
}

.contact-note p {
    font-size: 1rem;
    color: #4a5f5a;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8f3e8;
}

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

.contact-additional {
    background-color: #f9fbf9;
    padding: 5rem 2rem;
}

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

.contact-additional-content h2 {
    font-size: 2.2rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.contact-additional-content p {
    font-size: 1.1rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #f9fbf9;
    padding: 2.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #4a5f5a;
    margin-bottom: 1rem;
}

.thanks-details ul {
    list-style: none;
    margin-top: 1.5rem;
}

.thanks-details ul li {
    font-size: 1.05rem;
    color: #4a5f5a;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.thanks-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a6b5a;
    font-weight: bold;
}

.thanks-next {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next h2 {
    font-size: 2rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
}

.thanks-next p {
    font-size: 1.05rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #1a3a2e;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #1a3a2e;
    border: 2px solid #1a3a2e;
}

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

.legal-page {
    background-color: #ffffff;
    padding: 4rem 2rem 6rem;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a3a2e;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7a8f8a;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a3a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c5043;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #4a6b5a;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .philosophy-grid,
    .team-content,
    .contact-layout,
    .service-detail-block {
        flex-direction: column;
    }

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

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .philosophy-text,
    .philosophy-image,
    .team-text,
    .team-image,
    .contact-info,
    .contact-image,
    .service-detail-content,
    .service-detail-image,
    .service-image {
        min-width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .ad-notice {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 600px) {
    .hero-overlay {
        padding: 2rem;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-form {
        padding: 2rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}