:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a66b;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e0dcd5;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

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);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

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

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

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

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

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

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

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

.section {
    padding: 90px 0;
}

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

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

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

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

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    border-left: 4px solid var(--secondary);
}

.problem-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-light);
    font-size: 16px;
}

.story-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 1 1 400px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.story-content {
    flex: 1 1 450px;
}

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

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

.insight-section {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

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

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 19px;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 15px;
    opacity: 0.85;
}

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 550px;
    min-width: 300px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px var(--shadow);
}

.trust-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.trust-avatar {
    width: 55px;
    height: 55px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.trust-info h4 {
    font-size: 17px;
    color: var(--primary);
}

.trust-info span {
    font-size: 14px;
    color: var(--text-light);
}

.trust-card p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

.trust-stars {
    color: var(--accent);
    margin-top: 15px;
    font-size: 18px;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.service-image {
    flex: 1 1 400px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-details {
    flex: 1 1 450px;
}

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

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

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

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    background-color: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
}

.cta-block {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 70px 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.cta-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-block p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-block .btn:hover {
    background-color: var(--light);
}

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

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.form-info {
    flex: 1 1 350px;
}

.form-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 17px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.form-benefits li::before {
    content: "";
    width: 22px;
    height: 22px;
    background-color: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.form-container {
    flex: 1 1 450px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    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;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--accent);
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

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

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.content-page h2:first-child {
    margin-top: 0;
}

.content-page p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-page ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--text-light);
}

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

.about-image {
    flex: 1 1 400px;
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

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

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 17px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: center;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    height: 220px;
    background-color: var(--light);
    overflow: hidden;
}

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

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

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

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

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}

.contact-item h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

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

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

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

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

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

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

.cookie-content p {
    flex: 1 1 500px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

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

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

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

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.sticky-cta a:hover {
    background-color: var(--accent);
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border);
    }

    .hamburger {
        display: flex;
    }

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

    .section-header h2 {
        font-size: 30px;
    }

    .story-content h2 {
        font-size: 28px;
    }

    .insight-content h2 {
        font-size: 30px;
    }

    .form-info h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .cta-block {
        padding: 50px 25px;
    }

    .cta-block h3 {
        font-size: 26px;
    }

    .footer-grid {
        gap: 30px;
    }

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

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