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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #357ABD;
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f0f8ff;
    color: #4A90E2;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #50C878 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4A90E2;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #4A90E2;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #50C878 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    background-color: #4A90E2;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-secondary:hover {
    background-color: #4A90E2;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4A90E2 0%, #50C878 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

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

.content-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #333;
}

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

.content-main p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-box {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sidebar-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.sidebar-box p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50C878;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4A90E2;
}

.expertise-card p {
    color: #666;
    line-height: 1.7;
}

/* Services */
.services-intro {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.intro-text {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-list {
    padding: 4rem 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.service-price {
    text-align: center;
    padding: 1.5rem;
    background-color: #f0f8ff;
    border-radius: 8px;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    font-size: 0.875rem;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-main {
    flex: 1;
}

.contact-main h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-main h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #333;
}

.contact-main p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info-block {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail strong {
    display: block;
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    margin-bottom: 0;
    color: #666;
}

.contact-detail a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #357ABD;
    text-decoration: underline;
}

.contact-text {
    margin: 2rem 0;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.thank-you-text {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thank-you-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.next-steps {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #4A90E2;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

.content-suggestions {
    padding: 4rem 0;
}

.content-suggestions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.suggestion-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.suggestion-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.suggestion-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.suggestion-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.text-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #357ABD;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    color: #333;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #333;
}

.legal-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-text ul li {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-text strong {
    color: #333;
}

.contact-box {
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
    margin-top: 3rem;
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
}

.cookie-table thead {
    background-color: #f9fafb;
}

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

.cookie-table th {
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    color: #666;
}

.cookie-settings-button {
    margin: 2rem 0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    padding: 1rem;
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-description {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    margin-left: 1.875rem;
    line-height: 1.6;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .expertise-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .suggestion-grid {
        flex-direction: row;
    }

    .suggestion-card {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

    .thank-you-actions {
        flex-direction: row;
        max-width: none;
    }

    .service-item {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .service-content {
        margin-bottom: 0;
    }

    .service-price {
        flex-shrink: 0;
        min-width: 200px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .feature-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        flex: 1 1 25%;
    }

    .content-layout {
        flex-direction: row;
        gap: 3rem;
    }

    .content-main {
        flex: 2;
    }

    .content-sidebar {
        flex: 1;
        max-width: 350px;
    }

    .contact-layout {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
        max-width: 350px;
    }

    .expertise-grid {
        flex-wrap: nowrap;
    }

    .expertise-card {
        flex: 1;
    }

    .testimonial-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }
}