:root {
    --primary: #1a3a5c;
    --secondary: #e8a83c;
    --accent: #2d6a4f;
    --dark: #1c1c1c;
    --light: #f7f5f2;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 8px;
}

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

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

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

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

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

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-disclosure {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

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

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

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

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 0;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.btn-primary:hover {
    background: #d49a35;
    transform: translateY(-2px);
}

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

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

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

.btn-accent:hover {
    background: #245840;
}

.section {
    padding: 80px 0;
}

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

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

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

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

.problem-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

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

.problem-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

.story-section {
    background: var(--white);
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.insight-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.trust-badge {
    text-align: center;
}

.trust-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.trust-badge .label {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.services-section {
    background: var(--white);
}

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

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

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

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #d49a35 100%);
    text-align: center;
    color: var(--dark);
}

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

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

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

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

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

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

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

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

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    width: 100%;
    max-width: 300px;
    padding: 16px 32px;
}

.disclaimer {
    background: #f8f9fa;
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--gray);
    border-left: 4px solid var(--secondary);
}

.disclaimer h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

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

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

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

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

.references {
    background: var(--white);
    padding: 40px;
    margin-top: 40px;
    border-radius: var(--radius);
}

.references h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.references a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

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

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

.cookie-accept:hover {
    background: #d49a35;
}

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

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.8;
}

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

.page-content h2 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.page-content h3 {
    color: var(--primary);
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

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

.page-content ul {
    margin: 15px 0 15px 20px;
    color: var(--gray);
}

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

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    flex: 1 1 250px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--gray);
}

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

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

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

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

.thanks-content h1 {
    color: var(--primary);
    margin-bottom: 15px;
}

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

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 90;
}

.sticky-cta .btn {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-top .container {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .section {
        padding: 50px 0;
    }

    .form-container {
        padding: 25px;
    }

    .sticky-cta {
        bottom: 100px;
        right: 10px;
    }

    .sticky-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.inline-cta {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    margin: 40px 0;
    border: 2px dashed var(--secondary);
}

.inline-cta h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

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

.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a6e 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.highlight-box h3 {
    margin-bottom: 15px;
}

.highlight-box p {
    opacity: 0.9;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

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

.split-image {
    flex: 1 1 50%;
    min-height: 400px;
    background-color: var(--gray);
}

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

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

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

    .split-image {
        min-height: 250px;
    }
}

.nav-legal {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.nav-legal a {
    margin-right: 15px;
}
