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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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: 15px;
}

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

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

.btn-accept:hover {
    background-color: #236b53;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2a7f62;
}

.ad-label {
    font-size: 11px;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2a7f62;
}

.hero-block {
    width: 100%;
    background-color: #1a1a1a;
}

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

.hero-image-wrap 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(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
}

.intro-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.offset-image-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.offset-left {
    flex: 1;
    background-color: #e8f4f0;
}

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

.offset-right {
    flex: 1;
}

.offset-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-highlight {
    padding: 90px 20px;
    background-color: #fafafa;
}

.centered-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.centered-block h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.subtext {
    font-size: 18px;
    color: #666;
}

.service-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 15px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8f4f0;
}

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

.service-card h4 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #555;
    flex: 1;
}

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

.select-service-btn {
    background-color: #2a7f62;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    margin: 0 25px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.trust-block {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.trust-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.form-section {
    padding: 90px 20px;
    background-color: #f0f0f0;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 35px;
    text-align: center;
    color: #555;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    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: #2a7f62;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff8e1;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
}

.disclaimer-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

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

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2a7f62;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2a7f62;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

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

.page-header {
    background-color: #2a7f62;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: #ffffff;
}

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

.team-section {
    padding: 90px 20px;
    background-color: #f9f9f9;
}

.team-image {
    flex: 1;
    background-color: #e8f4f0;
}

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

.team-content {
    flex: 1;
}

.team-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.values-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a7f62;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.experience-section {
    padding: 80px 20px;
    background-color: #f0f0f0;
}

.cta-about {
    padding: 70px 20px;
    background-color: #2a7f62;
}

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

.cta-box h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2a7f62;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.services-intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.service-block {
    padding: 80px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.service-block:last-child {
    border-bottom: none;
}

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

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

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

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

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

.service-pricing-box {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2a7f62;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f4f0;
}

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

.service-cta {
    padding: 70px 20px;
    background-color: #2a7f62;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2a7f62;
}

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

.contact-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.location-section {
    padding: 70px 20px;
    background-color: #f9f9f9;
}

.response-info {
    padding: 60px 20px;
    background-color: #ffffff;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 8px;
    text-align: center;
}

.info-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 17px;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2a7f62;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: #f0f0f0;
    color: #2a7f62;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.thanks-info {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

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

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

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2a7f62;
}

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

.legal-container h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-container a {
    color: #2a7f62;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #2a7f62;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

    .section-container,
    .wide-container,
    .contact-container {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .service-block .section-container,
    .service-block.reverse .section-container {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}