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

:root {
    --primary-color: #2C5F7F;
    --secondary-color: #D4A574;
    --text-dark: #1A2B3C;
    --text-light: #5F6F7F;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
}

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

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

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

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

.ad-notice {
    font-size: 12px;
}

nav {
    padding: 20px 0;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

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

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

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

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

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

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

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

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

.cta-button:hover {
    background-color: #1E4A66;
}

.section-split {
    display: flex;
}

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

.split-content {
    flex: 1;
    padding: 100px 60px;
}

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

.split-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 80px 0;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    display: flex;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-image {
    width: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-details {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-details p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

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

.select-service {
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    font-size: 15px;
}

.select-service:hover {
    background-color: #C09562;
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border: 1px solid var(--border-color);
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.submit-button:hover {
    background-color: #1E4A66;
}

.selected-service-display {
    background-color: #E8F4F8;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--primary-color);
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #1E4A66;
}

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

.cookie-reject:hover {
    background-color: #CBD5E0;
}

.about-intro {
    padding: 100px 0;
    text-align: center;
}

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-intro p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 60px;
}

.contact-info h1 {
    font-size: 44px;
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

.thanks-page p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid var(--secondary-color);
}

.disclaimer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

    .hero-content,
    .split-content,
    .contact-info {
        padding: 60px 32px;
    }

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

    .nav-links {
        gap: 16px;
    }

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