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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

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

.btn-accept:hover {
    background-color: #24612f;
}

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

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

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #666666;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #24612f;
}

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-right {
    order: 2;
}

.intro-left {
    order: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

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

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.intro-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

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

.citation {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-overview {
    background-color: #f5f5f5;
    padding: 80px 40px;
}

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

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

.services-header p {
    font-size: 18px;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
}

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

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2d7a3e;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    padding: 60px;
}

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

.form-content > p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.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: 500;
    color: #2c2c2c;
}

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

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

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

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

.form-right {
    background-color: #f8f8f8;
    padding: 60px;
    display: flex;
    align-items: center;
}

.form-benefits h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 16px;
    line-height: 1.6;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #3a3a3a;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 18px;
}

.environmental-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.env-left,
.env-right {
    flex: 1;
}

.env-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #ffffff;
}

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

.env-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.env-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

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

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
}

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-references ol li a {
    color: #4a9eff;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

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

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

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

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

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

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.thanks-service {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.thanks-service strong {
    color: #2d7a3e;
}

.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #ffffff;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-left: 4px solid #2d7a3e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f8f8;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.contact-cta {
    text-align: center;
}

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

.contact-cta p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .environmental-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .env-left,
    .about-left,
    .contact-left {
        padding: 40px;
    }

    .hero-content h1,
    .about-content h1 {
        font-size: 38px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}