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

:root {
    --primary: #2c3e50;
    --secondary: #95a5a6;
    --accent: #c9a961;
    --light: #ecf0f1;
    --dark: #1a1a1a;
    --text: #333333;
}

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

.ad-notice {
    background: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
}

header {
    background: var(--primary);
    color: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

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

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

.split-left {
    flex: 1;
    background: var(--primary);
    color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(44,62,80,0.3), transparent);
}

.split-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.split-left p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
}

.split-section {
    display: flex;
    min-height: 70vh;
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.content-half {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.content-half.dark {
    background: var(--light);
}

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

.content-half h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.content-half h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.content-half p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.service-card .price {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 700;
    margin: 1rem 0;
}

.service-card p {
    font-size: 1rem;
    color: var(--secondary);
}

.form-section {
    background: var(--primary);
    color: #ffffff;
    padding: 5rem 2rem;
}

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

.form-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

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

footer {
    background: var(--dark);
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    text-decoration: none;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.cookie-btn.reject {
    background: var(--secondary);
    color: #ffffff;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.service-content {
    flex: 1;
    padding: 3rem;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-content .price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--secondary);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-page p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.thanks-container p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.disclaimer {
    background: var(--light);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .split-hero,
    .split-section,
    .service-item,
    .contact-split {
        flex-direction: column !important;
    }

    .split-left,
    .content-half {
        padding: 3rem 2rem;
    }

    .split-right,
    .image-half,
    .service-image {
        min-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}
