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

:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    --accent: #d4af37;
    --text: #333;
    --light: #fff;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

header {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    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);
}

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-left {
    background: var(--secondary);
}

.split-right {
    background: var(--light);
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.hero-split {
    display: flex;
    height: 600px;
}

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

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

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

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

.section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text);
    opacity: 0.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 50px 40px;
    background: var(--light);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

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

.service-card p {
    margin-bottom: 30px;
    color: var(--text);
    line-height: 1.8;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 30px;
}

.price-note {
    font-size: 14px;
    color: var(--text);
    opacity: 0.7;
}

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

form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: 600;
    color: var(--primary);
}

input,
select,
textarea {
    padding: 15px;
    border: 2px solid var(--border);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--light);
    padding: 30px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-text {
    flex: 1;
}

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

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

footer {
    background: var(--primary);
    color: var(--light);
    padding: 80px 0 40px;
}

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

.footer-section {
    flex: 1;
}

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

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

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

.footer-section a {
    color: var(--light);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.about-content {
    display: flex;
    gap: 80px;
    margin: 80px 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

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

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

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

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

.policy-content ul,
.policy-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.thanks-container {
    max-width: 700px;
    margin: 120px auto;
    text-align: center;
    padding: 80px 40px;
}

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

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

@media (max-width: 968px) {
    nav ul {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--light);
        padding: 30px;
        border-top: 1px solid var(--border);
        gap: 20px;
    }

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

    .hero-text,
    .split-left,
    .split-right {
        padding: 60px 30px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }
}
