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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e2c;
    color: #fff;
    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;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background: #5a7d5a;
    color: #fff;
}

.btn-accept:hover {
    background: #4a6d4a;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e2c;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

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

.main-nav a:hover {
    color: #5a7d5a;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f9f8;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e2c;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #5a7d5a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

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

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5a4a;
}

.services-display {
    padding: 80px 40px;
    background: #fafafa;
}

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

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

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

.service-card-split {
    display: flex;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    padding: 50px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e2c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a5a4a;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #4a5a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a7d5a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #5a7d5a;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background: #5a7d5a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #4a6d4a;
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.approach-split {
    display: flex;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    background: #e8ede8;
}

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

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5a4a;
}

.approach-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.form-section-split {
    display: flex;
    background: #fff;
}

.form-intro {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e2c;
    color: #fff;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #5a7d5a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4a6d4a;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f5f5f5;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 40px 40px;
    background: #2c3e2c;
    color: #fff;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.page-header {
    padding: 100px 40px 60px;
    background: #f8f9f8;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e2c;
}

.page-header p {
    font-size: 18px;
    color: #4a5a4a;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e2c;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e2c;
}

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

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

.page-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a5a4a;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9f8;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e2c;
}

.info-card p {
    font-size: 15px;
    color: #4a5a4a;
    margin-bottom: 8px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5a4a;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #5a7d5a;
    margin-top: 20px;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #5a7d5a;
}

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

.thanks-container .service-detail {
    padding: 24px;
    background: #f8f9f8;
    border-radius: 4px;
    margin: 30px 0;
}

.thanks-container .service-detail strong {
    color: #2c3e2c;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 36px;
    background: #5a7d5a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #4a6d4a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .form-section-split,
    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-left,
    .intro-text,
    .approach-content,
    .form-intro,
    .form-container,
    .service-info {
        padding: 40px 24px;
    }

    .services-display {
        padding: 40px 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

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