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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fefefe;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d5a3c;
}

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

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

.nav-links a:hover {
    color: #3d5a3c;
}

.ad-notice {
    font-size: 0.85rem;
    color: #888;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background-color: #3d5a3c;
    border-radius: 2px;
}

.hero-section {
    width: 100%;
    margin-top: -1px;
}

.hero-image {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, #4a6b4a, #5b8c5a);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-content-small h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.hero-content-small p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.intro-story {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.split-text em {
    font-style: italic;
    color: #3d5a3c;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.insight-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom right, #e8e3da, #f2ede4);
}

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

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

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #3d5a3c;
}

.insight-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.visual-story {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.grid-item {
    flex: 1;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.grid-item.large {
    flex: 2;
    min-width: 500px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #ffffff;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.grid-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.grid-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.centered-content {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.testimonials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #5b8c5a;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3d5a3c;
}

.services-preview {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f4f1ec, #ffffff);
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-intro p {
    font-size: 1.15rem;
    color: #5a5a5a;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-info {
    padding: 1.75rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #5a5a5a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3d5a3c;
    margin-bottom: 1.25rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.85rem;
    background-color: #5b8c5a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

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

.form-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #5b8c5a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f4f1ec;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.main-footer {
    background-color: #2c3d2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #d4d4d4;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5a4a;
    color: #b4b4b4;
    font-size: 0.9rem;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #5b8c5a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #4a6b4a;
}

.btn-reject {
    background-color: #888;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #666;
}

.about-content {
    padding: 4rem 2rem;
}

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

.about-text-block {
    margin-bottom: 4rem;
}

.about-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.about-text-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.image-text-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.image-text-layout img {
    flex: 1;
    max-width: 450px;
    border-radius: 8px;
}

.text-beside {
    flex: 1;
}

.text-beside h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #3d5a3c;
}

.text-beside p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c2c2c;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #3d5a3c;
}

.value-item p {
    font-size: 1rem;
    color: #5a5a5a;
}

.team-section,
.business-model-section {
    margin-bottom: 3rem;
}

.team-section h2,
.business-model-section h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #2c2c2c;
}

.team-section p,
.business-model-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.services-detailed {
    padding: 4rem 2rem;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.service-detail-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #5a5a5a;
}

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

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3d5a3c;
    margin-bottom: 1.25rem;
}

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #5b8c5a, #4a6b4a);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #3d5a3c;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-page-content {
    padding: 4rem 2rem;
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

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

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #3d5a3c;
}

.info-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.info-note {
    background-color: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5b8c5a;
}

.info-note p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0;
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    border-radius: 10px;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3d5a3c;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.service-confirmation {
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.1rem;
    color: #3d5a3c;
    background-color: #f4f9f4;
    padding: 1rem;
    border-radius: 6px;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary {
    background-color: #5b8c5a;
    color: #ffffff;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #e8e3da;
    color: #3d5a3c;
}

.btn-secondary:hover {
    transform: scale(1.05);
}

.thanks-info {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #2c2c2c;
}

.next-steps {
    padding-left: 1.25rem;
}

.next-steps li {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #3d5a3c;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4a6b4a;
}

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

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

.legal-container ul li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-container a {
    color: #5b8c5a;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .split-layout,
    .image-text-layout,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .testimonials {
        flex-direction: column;
    }

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

    .grid-item.large {
        min-width: 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
