* {
    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: #2d2d2d;
    background: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: #1a3a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #81c784;
}

.ad-notice {
    font-size: 12px;
    color: #a5d6a7;
    border-left: 1px solid #4a7c59;
    padding-left: 15px;
    font-style: italic;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.85), rgba(74, 124, 89, 0.75));
    width: 100%;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 800px;
}

.hero-section p {
    font-size: 22px;
    color: #e8f5e9;
    margin-bottom: 35px;
    max-width: 650px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #66bb6a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}

.cta-primary:hover {
    background: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4);
}

.intro-section {
    padding: 90px 0;
    background: #f1f8f4;
}

.intro-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 19px;
    color: #3d5a50;
    margin-bottom: 20px;
}

.value-section {
    padding: 100px 0;
    background: #ffffff;
}

.value-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
}

.value-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #4a6b5e;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 0;
    background: #f9fdf9;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 60px;
    text-align: center;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 50px;
}

.service-block {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-block:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.service-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 18px;
}

.service-block p {
    font-size: 16px;
    color: #4a6b5e;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select {
    background: #4caf50;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-select:hover {
    background: #388e3c;
    transform: scale(1.02);
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta a {
    display: inline-block;
    color: #2e7d32;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2e7d32;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.services-cta a:hover {
    color: #1b5e20;
    border-color: #1b5e20;
}

.form-section {
    padding: 90px 0;
    background: #e8f5e9;
}

.form-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: #3d5a50;
    margin-bottom: 40px;
}

.main-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #c8e6c9;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #66bb6a;
}

.btn-submit {
    width: 100%;
    background: #2e7d32;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1b5e20;
}

.trust-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.trust-content img {
    flex: 1;
    min-width: 400px;
    width: 100%;
    height: auto;
    max-width: 550px;
    border-radius: 8px;
    object-fit: cover;
}

.trust-text {
    flex: 1;
    min-width: 350px;
}

.trust-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.trust-text p {
    font-size: 17px;
    color: #4a6b5e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.main-footer {
    background: #1a3a2e;
    color: #e8f5e9;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #c8e6c9;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-col a:hover {
    color: #81c784;
}

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

.disclaimer p {
    font-size: 13px;
    color: #a5d6a7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.page-hero {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    padding: 80px 0;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.page-hero p {
    font-size: 20px;
    color: #e8f5e9;
    margin-top: 20px;
}

.about-intro {
    padding: 80px 0;
    background: #f9fdf9;
}

.about-intro p {
    font-size: 18px;
    color: #3d5a50;
    margin-bottom: 25px;
    line-height: 1.8;
}

.team-section {
    padding: 90px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 60px;
    text-align: center;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #4a6b5e;
    line-height: 1.7;
}

.values-section {
    padding: 90px 0;
    background: #f1f8f4;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 50px;
    text-align: center;
}

.values-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    color: #4a6b5e;
    line-height: 1.7;
}

.approach-section {
    padding: 90px 0;
    background: #ffffff;
}

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

.approach-text {
    flex: 1;
    min-width: 350px;
}

.approach-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.approach-text p {
    font-size: 17px;
    color: #4a6b5e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-content img {
    flex: 1;
    min-width: 400px;
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
    object-fit: cover;
}

.services-detail {
    padding: 60px 0;
    background: #ffffff;
}

.service-full {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 350px;
}

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

.service-info {
    flex: 1;
    min-width: 350px;
}

.service-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    color: #4a6b5e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-includes {
    background: #f1f8f4;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #4caf50;
}

.price-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
    margin: 25px 0;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.contact-block p {
    font-size: 17px;
    color: #4a6b5e;
    line-height: 1.7;
}

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

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

.location-section,
.visit-section {
    padding: 60px 0;
    background: #f9fdf9;
}

.location-section h2,
.visit-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.location-section p,
.visit-section p {
    font-size: 17px;
    color: #4a6b5e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 30px;
}

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

.btn-back {
    display: inline-block;
    background: #4caf50;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 30px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #388e3c;
}

.legal-page {
    padding: 80px 0;
    background: #f9fdf9;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    color: #388e3c;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    color: #4a6b5e;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-page li {
    font-size: 16px;
    color: #4a6b5e;
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3a2e;
    padding: 25px;
    box-shadow: 0 -4px 12px 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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #e8f5e9;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #4caf50;
    color: #ffffff;
}

.btn-accept:hover {
    background: #388e3c;
}

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

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

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

    .hero-section p {
        font-size: 18px;
    }

    .value-grid,
    .services-layout {
        flex-direction: column;
    }

    .service-block {
        min-width: 100%;
    }

    .trust-content,
    .approach-content,
    .contact-layout {
        flex-direction: column;
    }

    .trust-content img,
    .approach-content img,
    .contact-image {
        min-width: 100%;
    }

    .page-hero h1 {
        font-size: 32px;
    }

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

    .team-member {
        min-width: 100%;
    }
}
