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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
}

.cookie-content a {
    color: #6fbb6f;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background: #6fbb6f;
    color: #ffffff;
}

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

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f2e;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #6fbb6f;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #e8f5e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #6fbb6f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #5da65d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 187, 111, 0.3);
}

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    padding: 0 40px;
    align-items: center;
}

.mission-image {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.mission-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-intro {
    max-width: 900px;
    margin: 80px auto 60px;
    text-align: center;
    padding: 0 40px;
}

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

.intro-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.services-grid {
    max-width: 1400px;
    margin: 60px auto 100px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    flex: 1;
    background: #f0f0f0;
    min-height: 300px;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.price {
    font-size: 24px;
    color: #6fbb6f;
    font-weight: 700;
    margin: 20px 0;
}

.select-service {
    background: #2d5f2e;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1f4320;
    transform: translateY(-2px);
}

.contact-split {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4ebd4 100%);
    padding: 80px 40px;
    margin-top: 100px;
}

.form-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.form-intro p {
    font-size: 18px;
    color: #555;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6fbb6f;
}

.selected-service-display {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #6fbb6f;
}

.selected-service-display p {
    margin: 5px 0;
    color: #2c3e50;
}

.submit-btn {
    background: #6fbb6f;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #5da65d;
    transform: translateY(-2px);
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #6fbb6f;
}

.footer-section p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #6fbb6f;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    max-width: 900px;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .hero-split,
    .mission-split,
    .service-card {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
    }

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

    .form-container {
        padding: 30px 20px;
    }
}