:root {
    --primary: #4A90D9;
    --primary-dark: #3A7BC8;
    --secondary: #FF8C42;
    --accent: #6BBF59;
    --dark: #2D3748;
    --light: #F7FAFC;
    --gray: #718096;
    --gray-light: #E2E8F0;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 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;
}

.ad-disclosure {
    background-color: var(--gray-light);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

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

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

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

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

nav {
    display: flex;
    gap: 30px;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.hero {
    background-color: #E8F4FD;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

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

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

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

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

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

.btn-secondary:hover {
    background-color: #E67A32;
    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);
}

.section {
    padding: 80px 0;
}

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

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

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

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

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

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

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

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

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

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

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

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

.trust-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.trust-section p {
    color: rgba(255, 255, 255, 0.9);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.trust-item .number {
    font-size: 48px;
    font-weight: 700;
    display: block;
}

.trust-item .label {
    font-size: 16px;
    opacity: 0.9;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
}

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

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

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-location {
    font-size: 14px;
    color: var(--gray);
}

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

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

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

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light);
    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(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    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 {
    resize: vertical;
    min-height: 120px;
}

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

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.benefit-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}

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

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

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

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

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

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

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

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

.disclaimer {
    background-color: var(--gray-light);
    padding: 30px 0;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

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

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

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

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

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-section h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark);
}

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

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

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

.about-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
}

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

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

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

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1 1 280px;
    background-color: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    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: 600px;
}

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

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

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

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

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

.story-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 25px;
}

.story-content p:first-of-type::first-letter {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    float: left;
    margin-right: 10px;
    line-height: 1;
}

.highlight-box {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
}

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

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

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

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

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

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

.inline-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

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

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

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-image img {
        height: 280px;
    }

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

    nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .trust-items {
        gap: 30px;
    }

    .trust-item .number {
        font-size: 36px;
    }

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

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

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

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

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

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
