:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #3b82f6;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    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(--secondary);
    background-color: var(--white);
}

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

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

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-top {
    background-color: var(--secondary);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.ad-disclosure {
    text-align: center;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--secondary);
    transition: var(--transition);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.hero {
    margin-top: 100px;
    padding: 80px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
}

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 48px;
}

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

.story-section {
    padding: 60px 0;
}

.story-block {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

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

.story-block:last-child {
    margin-bottom: 0;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

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

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

.story-image img {
    width: 100%;
    height: 300px;
}

.problem-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
    color: var(--white);
    padding: 80px 0;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.problem-card {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.problem-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.insight-section {
    padding: 80px 0;
    background-color: var(--white);
}

.insight-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.insight-main {
    flex: 2;
}

.insight-sidebar {
    flex: 1;
    background-color: var(--light);
    padding: 32px;
    border-radius: var(--radius);
    position: sticky;
    top: 120px;
}

.insight-main h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.insight-main p {
    margin-bottom: 20px;
    color: var(--gray);
}

.insight-list {
    list-style: none;
    margin: 24px 0;
}

.insight-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.insight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

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

.trust-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 24px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-label {
    color: var(--gray);
}

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

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

.testimonial-card {
    flex: 1 1 300px;
    background-color: var(--light);
    padding: 32px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray);
}

.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.service-card {
    flex: 1 1 320px;
    background-color: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

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

.benefits-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    padding: 80px 0;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 250px;
    display: flex;
    gap: 16px;
}

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

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

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-section .btn:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

footer {
    background-color: var(--secondary);
    color: var(--gray-light);
    padding: 60px 0 24px;
}

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: var(--gray-light);
    transition: var(--transition);
}

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

.footer-col p {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    background-color: var(--light);
    padding: 32px 0;
    font-size: 0.85rem;
    color: var(--gray);
    border-top: 1px solid var(--gray-light);
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

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

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

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

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

.page-header {
    margin-top: 100px;
    padding: 60px 0;
    background-color: var(--light);
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.content-page h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
}

.content-page h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
}

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

.content-page ul,
.content-page ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--gray);
}

.content-page li {
    margin-bottom: 8px;
}

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

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

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

.about-story-image img {
    width: 100%;
    height: 350px;
}

.team-section {
    padding: 60px 0;
    background-color: var(--light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-card {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--gray-light);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
}

.team-card h4 {
    margin-bottom: 4px;
}

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

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

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

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

.contact-details h4 {
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--gray);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    margin-top: 100px;
}

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

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

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

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--gray);
    margin-bottom: 32px;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
    }

    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
    }

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

    .insight-sidebar {
        position: static;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
    }

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

    .hamburger {
        display: flex;
    }

    .footer-grid {
        gap: 32px;
    }

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

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 32px 24px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
}
