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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #2d5016;
}

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #495057;
}

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

.cta-primary:hover {
    background-color: #1f3610;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

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

.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;
    margin-bottom: 24px;
    color: #2d5016;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #495057;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

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

.services-header p {
    font-size: 20px;
    color: #495057;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px 16px;
    color: #495057;
    font-size: 16px;
}

.service-price {
    padding: 0 24px 16px;
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1f3610;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta a {
    display: inline-block;
    color: #2d5016;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #2d5016;
    border-radius: 4px;
    transition: all 0.3s;
}

.services-cta a:hover {
    background-color: #2d5016;
    color: #ffffff;
}

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

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

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

.values-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 17px;
    padding: 12px 0 12px 32px;
    position: relative;
    color: #495057;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
    font-size: 20px;
}

.values-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.form-section {
    background-color: #2d5016;
    padding: 80px 40px;
}

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

.form-container h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    color: #e9ecef;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 18px;
    background-color: #ffffff;
    color: #2d5016;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #212529;
    color: #dee2e6;
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

.footer-col a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #adb5bd;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

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

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

.thanks-page p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 16px;
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-page .back-link:hover {
    background-color: #1f3610;
}

.page-header {
    background-color: #2d5016;
    padding: 80px 40px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    color: #e9ecef;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #495057;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    padding: 10px 0 10px 28px;
    position: relative;
    color: #495057;
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
}

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

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

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

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

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

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

.philosophy-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5016;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

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

.process-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5016;
}

.process-step strong {
    display: block;
    font-size: 19px;
    margin-bottom: 8px;
    color: #2d5016;
}

.process-step p {
    font-size: 16px;
    color: #495057;
}

.team-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d5016;
}

.team-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

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

.contact-info-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-card {
    flex: 1;
}

.contact-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5016;
}

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

.contact-detail strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d5016;
}

.contact-detail p {
    font-size: 17px;
    color: #495057;
    line-height: 1.6;
}

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

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

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.legal-page a {
    color: #2d5016;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .values-split,
    .about-split,
    .process-split,
    .service-detail,
    .contact-info-section {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 30px;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .philosophy-grid {
        flex-direction: column;
    }

    .page-header {
        padding: 50px 30px;
    }

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