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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #52796f;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --light-text: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

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

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 11px;
    color: var(--light-text);
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-left: 15px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.split-left {
    background-color: var(--light-bg);
}

.split-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 77, 46, 0.3);
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

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

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

.section {
    padding: 80px 0;
}

.section-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.section-content,
.section-visual {
    flex: 1;
}

.section-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.section-visual {
    background-color: var(--accent-color);
    border-radius: 8px;
}

h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--accent-color);
}

.service-content {
    padding: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.form-section {
    background-color: var(--light-bg);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

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

.reject-cookies {
    background-color: var(--border-color);
    color: var(--dark-text);
}

.testimonial-section {
    background-color: var(--light-bg);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.info-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    padding: 30px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 60px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-label {
    font-weight: 600;
    min-width: 150px;
    color: var(--primary-color);
}

.page-header {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    margin-top: 40px;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.disclaimer {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--light-text);
}

.thank-you-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--white);
}

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

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

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

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .info-cards {
        flex-direction: column;
    }
}
