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

:root {
    --primary: #1a3a52;
    --secondary: #c4975f;
    --accent: #8b7355;
    --light: #f4f1ed;
    --dark: #2c2c2c;
    --text: #333;
    --border: #d4c5b9;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

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

header {
    background: var(--primary);
    padding: 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;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

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

.mobile-menu span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

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

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

.split-left {
    background: var(--primary);
    color: #fff;
}

.split-right {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.split-right::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
}

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

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

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

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

.btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

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

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

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

.section-content,
.section-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
}

.section-content {
    background: #fff;
}

.section-visual {
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26,58,82,0.7), rgba(196,151,95,0.5));
}

.content-wrapper {
    max-width: 550px;
}

.content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.3;
}

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

.content-wrapper ul {
    list-style: none;
    margin: 30px 0;
}

.content-wrapper li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.content-wrapper li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 30px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
}

.service-details {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 32px;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 20px;
}

.price-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.full-width-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a7a 100%);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.full-width-cta h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.full-width-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: #fff;
    padding: 100px 20px;
}

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

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

.form-container .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 500;
}

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

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

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

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

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

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

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

.footer-section a {
    color: #ccc;
    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 #444;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: #fff;
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1 1 600px;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-actions button {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--secondary);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--accent);
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-reject:hover {
    background: #fff;
    color: var(--dark);
}

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

.sticky-cta.visible {
    display: block;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta .btn {
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    font-size: 16px;
    padding: 18px 35px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a7a 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 20px;
    background: #fff;
}

.content-section:nth-child(even) {
    background: var(--light);
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
    margin-top: 40px;
}

.text-content h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 35px;
}

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

.text-content ul,
.text-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.text-content li {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-info {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 20px;
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary);
    margin-bottom: 30px;
}

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

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

.thanks-container .btn {
    margin-top: 40px;
}

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

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

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

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

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

    nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px;
        gap: 20px;
    }

    .mobile-menu {
        display: flex;
    }

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

    .split-left,
    .split-right,
    .section-content,
    .section-visual {
        padding: 50px 30px;
    }

    .content-wrapper h2 {
        font-size: 32px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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