/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a:hover {
    color: #ff5252;
}

ul {
    list-style: none;
}

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

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B6B;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF6B6B;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-inner {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-inner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #FF6B6B;
    color: #fff;
}

.btn-primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d3436;
    text-align: center;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

/* Content Block */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: #2d3436;
}

.card p {
    color: #636e72;
    line-height: 1.6;
}

/* Split Content */
.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-text,
.split-visual {
    flex: 1;
    min-width: 300px;
}

.split-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Statistics */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #636e72;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3436;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 0.8rem;
    color: #FF6B6B;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #4ECDC4;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #FF6B6B;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #636e72;
    line-height: 1.8;
}

/* Insights */
.insights-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.insight-block {
    flex: 1;
    min-width: 280px;
}

.insight-block h3 {
    color: #4ECDC4;
    margin-bottom: 1rem;
}

.insight-block p {
    line-height: 1.8;
    color: #636e72;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background-color: #fff;
    color: #FF6B6B;
}

.cta .btn-primary:hover {
    background-color: #f0f0f0;
}

/* Services Page */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    flex-shrink: 0;
}

.service-title h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.service-price {
    color: #4ECDC4;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #636e72;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    flex: 1;
    min-width: 240px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
}

.feature-item h3 {
    color: #4ECDC4;
    margin-bottom: 0.8rem;
}

/* Comparison */
.comparison-table {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label,
.comparison-value {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.comparison-label {
    text-align: left;
    font-weight: 600;
    background-color: #f9f9f9;
}

.comparison-note {
    text-align: center;
    margin-top: 1rem;
    color: #636e72;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-info,
.contact-description {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    line-height: 1.8;
}

.directions-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.directions-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.topic-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.topic-item h3 {
    color: #FF6B6B;
    margin-bottom: 0.8rem;
}

.info-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.info-block {
    flex: 1;
    min-width: 300px;
}

.info-block h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* About Page */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem 1rem;
}

.value-item svg {
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    line-height: 1.8;
    color: #636e72;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 2rem 1rem;
}

.team-icon {
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: #4ECDC4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    line-height: 1.8;
    color: #636e72;
}

.achievements {
    max-width: 800px;
    margin: 2rem auto 0;
}

.achievement-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.achievement-year {
    flex-shrink: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B6B;
    min-width: 80px;
}

.achievement-content h3 {
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: #636e72;
    line-height: 1.6;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-content svg {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.thank-you-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #636e72;
}

.thank-you-content p {
    margin-bottom: 2rem;
    color: #636e72;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .content-block {
    margin-bottom: 3rem;
}

.legal-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #2d3436;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF6B6B;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b2bec3;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
    color: #b2bec3;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #4ECDC4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    text-align: left;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-option p {
    color: #636e72;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .cards-grid,
    .testimonials-grid,
    .benefits-list,
    .process-steps {
        gap: 1.5rem;
    }

    .card,
    .testimonial,
    .benefit-item,
    .process-step {
        min-width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .achievement-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}