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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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-content a {
    color: #74b49b;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #74b49b;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #5f9a82;
}

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

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

.main-nav {
    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: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #dfe6e9;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #74b49b;
}

.hero-section {
    position: relative;
    min-height: 520px;
    background-color: #2c5f2d;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(44, 95, 45, 0.85), rgba(44, 95, 45, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

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

.hero-overlay p {
    color: #e8f5e9;
    font-size: 20px;
    max-width: 620px;
    line-height: 1.5;
}

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

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

.section-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-content h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

.services-preview-section {
    background-color: #ffffff;
    padding: 90px 40px;
}

.services-preview-section h2 {
    font-size: 40px;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e6e8;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8f5e9;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #546e7a;
    margin: 0 24px 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 24px 20px;
}

.btn-select-service {
    background-color: #74b49b;
    color: #ffffff;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    border-radius: 0;
}

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

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

.approach-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 28px;
}

.approach-content {
    color: #e8f5e9;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.commitment-section {
    background-color: #f8fafb;
    padding: 90px 40px;
}

.commitment-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.commitment-text h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 24px;
}

.commitment-text p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.inline-link {
    color: #74b49b;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #74b49b;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #5f9a82;
    border-bottom-color: #5f9a82;
}

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

.contact-form-section h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    color: #546e7a;
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 680px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    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: #74b49b;
}

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

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

.disclaimer-section {
    background-color: #fef9e7;
    padding: 50px 40px;
    border-top: 3px solid #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f6f4c;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #74b49b;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #74b49b;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #74b49b 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

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

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

.about-content h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 28px;
}

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

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

.team-philosophy-section h2 {
    font-size: 36px;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
}

.philosophy-item h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.philosophy-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

.expertise-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.expertise-text h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 24px;
}

.expertise-text p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

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

.values-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 28px;
    text-align: center;
}

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

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

.commitment-cta-section {
    background-color: #f8fafb;
    padding: 80px 40px;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    background-color: #74b49b;
    color: #ffffff;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #5f9a82;
}

.services-detail-section {
    background-color: #ffffff;
    padding: 60px 40px;
}

.service-detail-card {
    background-color: #f8fafb;
    border-left: 4px solid #74b49b;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 4px;
}

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

.service-detail-header h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin: 0;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
}

.service-detail-content p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-left: 24px;
    margin-bottom: 0;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.services-cta-section {
    background-color: #f8fafb;
    padding: 80px 40px;
}

.contact-info-section {
    background-color: #ffffff;
    padding: 60px 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 32px;
}

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

.contact-detail h3 {
    font-size: 18px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

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

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

.contact-approach-section h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 28px;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #f8fafb;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #74b49b;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-submessage {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.btn-back {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #1f4620;
}

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

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

.legal-container h1 {
    font-size: 40px;
    color: #2c5f2d;
    margin-bottom: 40px;
}

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

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

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

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

.legal-container ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-container a {
    color: #74b49b;
    text-decoration: underline;
}

.legal-updated {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 40px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table thead {
    background-color: #f8fafb;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 16px;
    color: #2c5f2d;
    border-bottom: 2px solid #d0d7de;
}

.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: #546e7a;
    border-bottom: 1px solid #e0e6e8;
}

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

    .hero-overlay p {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-card {
        width: 100%;
    }

    .commitment-wrapper,
    .expertise-wrapper {
        flex-direction: column;
    }

    .commitment-image,
    .expertise-image,
    .commitment-text,
    .expertise-text {
        min-width: 100%;
    }

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

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}