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

:root {
    --primary: #2c3e50;
    --secondary: #c9a227;
    --accent: #e8d5a3;
    --light: #f8f6f0;
    --dark: #1a1a1a;
    --text: #333333;
    --muted: #6c757d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

.ad-disclosure {
    color: var(--accent);
    font-size: 12px;
    text-align: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

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

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

.hero-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

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

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: var(--accent);
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

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

.split-image {
    flex: 1;
    min-height: 500px;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background-color: var(--white);
    border: 1px solid var(--accent);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px var(--shadow);
}

.service-image {
    height: 200px;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-text {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 16px;
}

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
}

.features-list {
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 15px;
    color: var(--muted);
}

.testimonials {
    padding: 80px 0;
    background-color: var(--light);
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: var(--white);
    padding: 32px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-role {
    font-size: 14px;
    color: var(--muted);
}

.cta-section {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--secondary);
}

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

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

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

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

.contact-form-wrapper {
    flex: 1;
    padding: 64px 48px;
    background-color: var(--light);
}

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

.contact-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 18px;
    color: var(--white);
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--accent);
    background-color: var(--white);
    color: var(--text);
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
}

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 64px 0 32px;
}

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

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: var(--muted);
    font-size: 15px;
}

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

.footer-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: var(--muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--muted);
    font-size: 14px;
}

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

.disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    border: 1px solid var(--muted);
    color: var(--muted);
}

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

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

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--accent);
}

.page-content {
    padding: 64px 0;
}

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

.content-wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin: 32px 0 16px;
}

.content-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0 12px;
}

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

.content-wrapper ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--text);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
    background-color: var(--light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
}

.about-intro {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 400px;
    min-height: 400px;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

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

.stats-row {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.stat-item {
    flex: 1 1 150px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--muted);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.team-member {
    flex: 1 1 280px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--muted);
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--muted);
}

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

    .split-section.reverse {
        flex-direction: column;
    }

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

    .hero-title {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--accent);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content,
    .split-content {
        padding: 48px 24px;
    }

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

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

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
