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

:root {
    --primary: #2d5a3d;
    --secondary: #f4a261;
    --accent: #e76f51;
    --light: #f8f9fa;
    --dark: #212529;
    --border: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

.split-hero {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
    padding: 60px;
}

.split-left {
    background: linear-gradient(135deg, var(--primary) 0%, #3a7049 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

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

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

.btn:hover {
    background: #e09451;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}

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

.btn-primary:hover {
    background: #d65d41;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 450px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '🐕';
    position: absolute;
    font-size: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin: 60px 0;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px var(--shadow);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-price small {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.split-section {
    display: flex;
    margin: 80px 0;
}

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

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

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
}

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

.visual-placeholder {
    width: 100%;
    max-width: 450px;
    height: 400px;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.visual-placeholder::before {
    content: attr(data-icon);
    position: absolute;
    font-size: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.form-wrapper p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-top: 10px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.sticky-cta:hover {
    background: #d65d41;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 111, 81, 0.5);
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--primary);
    padding: 25px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: var(--dark);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 12px 30px;
    white-space: nowrap;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #3a7049 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
    border-radius: 10px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
}

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

.contact-info,
.contact-map {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light), #e9ecef);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

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

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

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.policy-content p,
.policy-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

.thanks-icon {
    font-size: 100px;
    margin-bottom: 30px;
}

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

.thanks-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 30px;
        box-shadow: 0 4px 10px var(--shadow);
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

    .split-left,
    .split-right,
    .split-content,
    .split-visual {
        padding: 40px 20px;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 25px;
        font-size: 14px;
    }

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