:root {
    --primary: #1a2e44;
    --secondary: #c9a962;
    --accent: #2d4a6f;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f3;
    --bg-light: #fafafa;
    --bg-cream: #f5f2ed;
    --bg-dark: #0f1c2d;
    --border: #e0dcd5;
    --shadow: rgba(26, 46, 68, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.header {
    background-color: var(--primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.ad-disclosure {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 28px;
}

.nav-list a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    background-color: var(--accent);
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--bg-cream);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--text-light);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--accent);
    max-width: 600px;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.split-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

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

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

.split-visual {
    flex: 1;
    min-height: 450px;
    background-color: var(--accent);
    position: relative;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-content p {
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 28px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.feature-item {
    flex: 1 1 280px;
    padding: 36px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--accent);
    font-size: 0.95rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 380px;
    min-height: 280px;
    background-color: var(--accent);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-details p {
    color: var(--accent);
    margin-bottom: 24px;
    font-size: 0.98rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 320px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--secondary);
    font-weight: 600;
}

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

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
}

.contact-info-item {
    margin-bottom: 28px;
}

.contact-info-item h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

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

.contact-form-wrap {
    flex: 1;
    padding: 60px;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrap h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: #fff;
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 24px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.disclaimer {
    background-color: var(--bg-cream);
    padding: 24px;
    margin-top: 40px;
    border-radius: 4px;
    border-left: 4px solid var(--secondary);
}

.disclaimer p {
    font-size: 0.85rem;
    color: var(--accent);
    line-height: 1.7;
}

.page-header {
    background-color: var(--primary);
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.content-narrow h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 32px 0 16px;
}

.content-narrow p {
    margin-bottom: 16px;
    color: var(--accent);
}

.content-narrow ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-narrow li {
    margin-bottom: 8px;
    color: var(--accent);
    list-style: disc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-inner p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-inner a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: var(--text-light);
}

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

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--accent);
    max-width: 500px;
    margin-bottom: 32px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-intro-text p {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-intro-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--accent);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.values-section {
    background-color: var(--bg-cream);
    padding: 80px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 280px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--accent);
    font-size: 0.95rem;
}

.cta-inline {
    background-color: var(--primary);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-inline h3 {
    font-size: 1.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.contact-page-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    flex: 1 1 280px;
    padding: 36px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-card p {
    color: var(--accent);
    font-size: 0.98rem;
    line-height: 1.7;
}

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

    .hero-image {
        min-height: 400px;
    }

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

    .split-visual {
        min-height: 350px;
    }

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

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

    .about-intro {
        flex-direction: column;
    }

    .about-intro-image {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary);
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-main.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        text-align: center;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .split-content {
        padding: 40px 24px;
    }

    .service-details {
        padding: 28px;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 40px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}
