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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #f4f4f4;
    color: #1a1a1a;
}

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

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

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

.hero-card {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
}

.hero-text-card h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text-card p {
    font-size: 19px;
    color: #555;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d7a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-image-card {
    flex: 1;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.intro-section {
    background-color: #2d7a4f;
    padding: 80px 40px;
}

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

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
}

.intro-card h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.intro-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
}

.services-grid {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 19px;
    color: #666;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 24px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.approach-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.approach-container img {
    width: 50%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.form-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.form-container-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.form-container-card h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-container-card > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.submit-btn {
    padding: 16px 36px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    background-color: #1a1a1a;
    padding: 80px 40px;
}

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

.trust-content h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: #2c2c2c;
    padding: 36px;
    border-radius: 12px;
    width: calc(33.333% - 22px);
    min-width: 280px;
}

.testimonial-card p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #2d7a4f;
    font-weight: 600;
}

.footer {
    background-color: #f8f9fa;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #2d7a4f;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #fff3cd;
    border-left: 4px solid #d39e00;
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

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

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, #2d7a4f 0%, #1f5738 100%);
    padding: 100px 40px;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 20px;
    color: #d0f0e0;
}

.about-intro {
    padding: 80px 40px;
}

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

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.about-text-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

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

.about-image-block img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

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

.philosophy-container h2 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.philosophy-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.philosophy-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    width: calc(33.333% - 22px);
    min-width: 280px;
    border: 1px solid #e0e0e0;
}

.philosophy-card h3 {
    font-size: 24px;
    color: #2d7a4f;
    margin-bottom: 16px;
}

.philosophy-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.approach-detail-section {
    padding: 80px 40px;
}

.approach-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-detail-container img {
    width: 45%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.approach-detail-text {
    flex: 1;
}

.approach-detail-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-detail-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
}

.values-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.values-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.values-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-about-section {
    padding: 80px 40px;
    background-color: #2d7a4f;
}

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

.cta-about-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 19px;
    color: #d0f0e0;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2d7a4f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

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

.services-detailed {
    padding: 80px 40px;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-detail-image {
    width: 45%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

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

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a4f;
    margin: 24px 0 16px;
}

.services-cta {
    background-color: #2d7a4f;
    padding: 80px 40px;
}

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

.services-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-cta-content p {
    font-size: 18px;
    color: #d0f0e0;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 80px 40px;
}

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

.contact-info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: #2d7a4f;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

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

.contact-image-card img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.contact-additional-info {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.additional-info-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.additional-info-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 17px;
    color: #2d7a4f;
    font-weight: 600;
}

.thanks-next-steps {
    margin-top: 24px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d7a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2d7a4f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #2d7a4f;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #2d7a4f;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-container a {
    color: #2d7a4f;
    text-decoration: underline;
}

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-content,
    .about-container,
    .approach-container,
    .approach-detail-container,
    .contact-info-wrapper,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-image-card,
    .approach-container img,
    .approach-detail-container img,
    .service-detail-image {
        width: 100%;
    }

    .service-card,
    .testimonial-card,
    .philosophy-card {
        width: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-text-card h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 36px;
    }

    .cards-container,
    .testimonials-cards,
    .philosophy-cards {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card,
    .philosophy-card {
        width: 100%;
    }

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

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