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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    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;
    min-width: 300px;
}

.cookie-actions {
    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: #27ae60;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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;
}

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

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2d5016;
    margin-bottom: 25px;
}

.hero-left p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background-color: #e8f5e9;
}

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.services-grid {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-card-split {
    display: flex;
    margin-bottom: 50px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-content p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

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

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

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

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 80px;
    padding: 0 40px;
}

.form-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-description h2 {
    font-size: 38px;
    color: #2d5016;
    margin-bottom: 25px;
}

.form-description p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.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 #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.philosophy-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 40px;
}

.philosophy-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text h2 {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 25px;
}

.philosophy-text p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.footer-col a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #242424;
    border-radius: 4px;
}

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-container .selected-service-info {
    margin: 30px 0;
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #27ae60;
}

.thanks-container .selected-service-info strong {
    color: #2d5016;
}

.contact-page {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d5016;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #555555;
    margin: 0;
}

.contact-map {
    flex: 1;
    background-color: #e8f5e9;
    min-height: 500px;
    border-radius: 8px;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 30px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #2d5016;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-hero {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h1 {
    font-size: 42px;
    color: #2d5016;
    margin-bottom: 25px;
}

.about-text h2 {
    font-size: 32px;
    color: #2d5016;
    margin-bottom: 20px;
}

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

.about-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.services-page {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-page h1 {
    font-size: 48px;
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.services-page .intro-text {
    text-align: center;
    font-size: 18px;
    color: #555555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .philosophy-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

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

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

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

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