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

:root {
    --primary: #1a4d2e;
    --secondary: #f8b500;
    --dark: #0f1419;
    --light: #f4f6f8;
    --accent: #d35400;
    --text: #2c3e50;
    --border: #dfe6e9;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
}

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

header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right {
    flex: 1;
    background-color: #34495e;
    position: relative;
    overflow: hidden;
}

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

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

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-btn:hover {
    background: #e5a600;
    transform: translateY(-2px);
}

.section-split {
    display: flex;
    align-items: stretch;
}

.split-content {
    flex: 1;
    padding: 70px 50px;
}

.split-image {
    flex: 1;
    background-color: #95a5a6;
    position: relative;
}

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

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

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

h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--dark);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    border: 2px solid var(--border);
    padding: 35px;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.15);
}

.service-card h3 {
    margin-bottom: 12px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.service-card p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 12px;
}

.about-section {
    background: var(--light);
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 1;
    background-color: #7f8c8d;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2818 100%);
    color: white;
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.15);
}

select option {
    background: var(--dark);
    color: white;
}

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

.submit-btn {
    width: 100%;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.contact-info {
    display: flex;
    gap: 50px;
    padding: 60px 0;
}

.contact-block {
    flex: 1;
}

.contact-block h3 {
    margin-bottom: 20px;
}

.contact-block p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-col a {
    color: #b2bec3;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: color 0.3s;
}

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

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

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid var(--secondary);
    padding: 20px 25px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 25px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.reject-cookies {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.9;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--light);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .hero-split,
    .section-split,
    .about-content,
    .contact-info,
    .footer-content {
        flex-direction: column;
    }

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

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
    }

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

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