:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--primary-dark);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

section {
    padding: 4rem 0;
}

.company-intro,
.story-section,
.philosophy-section,
.approach-section,
.commitment-section,
.services-intro,
.contact-description {
    background: var(--bg-white);
}

.company-intro h2,
.story-section h2 {
    margin-bottom: 1.5rem;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.statistics-section h2 {
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.featured-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-feature {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-content,
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--text-color);
    display: block;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps,
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number,
.step-icon {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

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

.insights-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.insight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    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.25rem 1.25rem;
    margin: 0;
}

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

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.footer {
    background: var(--text-color);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    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: 2rem;
}

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

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.cookie-options {
    margin: 1.5rem 0;
}

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

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.mission-section,
.values-section,
.team-section,
.milestones-section {
    background: var(--bg-light);
}

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

.mission-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.value-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.team-member {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-step {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    height: fit-content;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.commitment-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-header h3 {
    flex: 1;
    margin-bottom: 0;
}

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

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-benefits {
    background: var(--bg-light);
}

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

.comparison-table {
    max-width: 800px;
    margin: 2rem auto 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-cell {
    flex: 1;
    padding: 1rem;
}

.comparison-cell.header {
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

.comparison-row:nth-child(even) .comparison-cell:not(.header) {
    background: var(--bg-light);
}

.contact-main {
    background: var(--bg-white);
}

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

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

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

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

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    margin: 0;
}

.why-contact {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.why-contact h3 {
    margin-bottom: 1rem;
}

.directions-section,
.company-info-section {
    background: var(--bg-light);
}

.directions-content {
    max-width: 900px;
    margin: 0 auto;
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.transport-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.directions-note {
    background: var(--primary-light);
    color: var(--bg-white);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.company-details {
    max-width: 800px;
    margin: 0 auto;
}

.legal-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.legal-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-item strong {
    min-width: 150px;
}

.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thank-you-content h1 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.meanwhile {
    margin-bottom: 3rem;
}

.meanwhile h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.quick-link {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quick-link:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.quick-link h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quick-link p {
    color: var(--text-light);
    margin: 0;
}

.contact-reminder {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.email-link {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.legal-content {
    background: var(--bg-white);
}

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

.legal-text h2 {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

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

.legal-text h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.legal-text ul,
.legal-text ol {
    margin-left: 1.5rem;
}

.cookies-table {
    width: 100%;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.cookies-table tr {
    border-bottom: 1px solid var(--border-color);
}

.cookies-table tr:last-child {
    border-bottom: none;
}

.cookies-table td {
    padding: 0.75rem;
}

.cookies-table td:first-child {
    background: var(--bg-light);
    font-weight: 600;
    width: 30%;
}

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .benefits-grid,
    .stats-grid,
    .testimonials-grid,
    .insights-grid,
    .mission-grid,
    .team-grid,
    .quick-links {
        flex-direction: column;
    }

    .benefit-card,
    .testimonial-card,
    .insight-card,
    .mission-card,
    .team-member,
    .quick-link {
        min-width: 100%;
    }

    .stat-item {
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-buttons .btn {
        width: 100%;
    }

    .value-item {
        flex-direction: column;
        gap: 1rem;
    }

    .value-number {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .step,
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number,
    .step-icon {
        margin: 0 auto;
    }

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

    .legal-item strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 2rem 0;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
