:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d2a;
    --secondary: #e8b54a;
    --accent: #5a8f6e;
    --light: #f7f9f7;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #d4a43e;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--gray);
    background-color: var(--gray-light);
    padding: 4px 12px;
    border-radius: 4px;
}

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

.nav-main a {
    padding: 10px 16px;
    color: var(--dark);
    font-weight: 500;
    border-radius: var(--radius);
}

.nav-main a:hover,
.nav-main a.active {
    background-color: var(--light);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Split Screen Sections */
.split-section {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-image {
    flex: 1;
    position: relative;
    background-color: var(--gray-light);
    overflow: hidden;
}

.split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h1 {
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.split-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.split-content .btn {
    align-self: flex-start;
}

/* Hero Specific */
.hero-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-section .split-content {
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--light);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-image {
    height: 200px;
    background-color: var(--gray-light);
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.875rem;
    color: var(--gray);
}

/* About Split */
.about-split {
    min-height: auto;
    padding: 100px 0;
}

.about-split .split-content {
    padding: 40px 60px;
}

.about-split .split-image {
    min-height: 500px;
}

.values-list {
    list-style: none;
    margin-top: 32px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.values-list .icon {
    width: 48px;
    height: 48px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.values-list .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.values-list h4 {
    margin-bottom: 4px;
}

.values-list p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
    color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--radius);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gray-light);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    display: flex;
    min-height: 60vh;
}

.cta-section .split-content {
    background-color: var(--secondary);
    padding: 80px;
}

.cta-section .split-content h2 {
    margin-bottom: 20px;
}

.cta-section .split-content p {
    color: var(--dark);
    opacity: 0.8;
}

.cta-section .btn-primary {
    background-color: var(--dark);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-dark);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

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

.contact-item h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-item p {
    color: var(--gray);
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.125rem;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Content Pages */
.content-page {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.content-wrapper h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background-color: var(--secondary);
    color: var(--dark);
}

.cookie-accept:hover {
    background-color: #d4a43e;
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-content h1 {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.thanks-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 32px;
}

/* Services Page */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-image {
    flex: 0 0 400px;
    height: 300px;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 24px;
}

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

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
}

/* Disclaimer */
.disclaimer {
    background-color: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 48px;
    border-left: 4px solid var(--secondary);
}

.disclaimer p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 40px;
    }

    .split-image {
        min-height: 400px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-main {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        order: 3;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-main a {
        width: 100%;
        text-align: center;
    }

    .ad-notice {
        order: 2;
        margin-left: auto;
        margin-right: 16px;
    }

    .split-content {
        padding: 40px 24px;
    }

    .cta-section .split-content {
        padding: 60px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        flex: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
