/* 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;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1a3d2e;
}

ul {
    list-style-position: inside;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4f;
}

.logo:hover {
    color: #1a3d2e;
}

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

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5f4f;
    background-color: #f4f1ec;
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #2c5f4f;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #3d7a64 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-small {
    background: linear-gradient(135deg, #2c5f4f 0%, #3d7a64 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.hero-small h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.hero-small p {
    opacity: 0.95;
}

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

.section-light {
    background-color: #f9f8f6;
}

.section-dark {
    background-color: #2c5f4f;
    color: #fff;
}

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-accent {
    background-color: #f4f1ec;
}

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

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

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

.btn-primary {
    background-color: #2c5f4f;
    color: #fff;
    border-color: #2c5f4f;
}

.btn-primary:hover {
    background-color: #1a3d2e;
    border-color: #1a3d2e;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c5f4f;
    border-color: #2c5f4f;
}

.btn-secondary:hover {
    background-color: #2c5f4f;
    color: #fff;
}

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

/* Content Split */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Services Preview */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #d4a574;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow:hover {
    color: #c89456;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.testimonials-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-detailed {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Industries */
.industries {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    padding: 1.5rem;
    background-color: #f9f8f6;
    border-radius: 8px;
}

.industry-item h3 {
    color: #2c5f4f;
    margin-bottom: 0.75rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c5f4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c5f4f;
    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;
    background-color: #f9f8f6;
}

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

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #2c5f4f 0%, #3d7a64 100%);
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.section-cta {
    background-color: #f4f1ec;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-detailed {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-detailed h3 {
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4f;
    margin-top: 1rem;
}

.category-description {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 2rem;
    color: #666;
}

/* Benefits Comparison */
.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background-color: #f9f8f6;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.benefit-item h3 {
    color: #2c5f4f;
    margin-bottom: 0.75rem;
}

/* Process Guide */
.process-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-step {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.guide-step h3 {
    color: #2c5f4f;
    margin-bottom: 1rem;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2,
.contact-description h2 {
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    color: #2c5f4f;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* Directions */
.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.direction-item h3 {
    color: #2c5f4f;
    margin-bottom: 1rem;
}

/* Business Info */
.business-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.info-block h3 {
    color: #2c5f4f;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.team-members {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    padding: 2rem;
    background-color: #f9f8f6;
    border-radius: 8px;
}

.team-member h3 {
    color: #2c5f4f;
    margin-bottom: 0.5rem;
}

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

/* Selection Process */
.selection-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-detail {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.process-detail h3 {
    color: #2c5f4f;
    margin-bottom: 1rem;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4f;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

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

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

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

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Interim Content */
.interim-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.interim-item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.interim-item h3 {
    color: #2c5f4f;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
}

.legal-text h3 {
    text-align: left;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.25rem;
}

.legal-text h4 {
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-text ul {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
    list-style-position: outside;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.footer-col a {
    color: #ccc;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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 {
    margin: 0;
}

.cookie-content a {
    color: #d4a574;
    text-decoration: underline;
}

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

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c5f4f;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

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

.cookie-option span {
    font-weight: 600;
}

.cookie-option p {
    margin-left: 1.75rem;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

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

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .menu-toggle {
        display: none;
    }

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

    .nav-menu li {
        margin-left: 2rem;
    }

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

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

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

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

    .services-preview {
        flex-direction: row;
    }

    .testimonials {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

    .contact-info,
    .contact-description {
        flex: 1;
    }

    .directions-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .direction-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .business-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-block {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .team-members {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }

    .timeline-year {
        min-width: 100px;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .interim-content {
        flex-direction: row;
    }

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

    .footer-col {
        flex: 1;
    }

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

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

    .cookie-modal-buttons {
        flex-direction: row;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }

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

    .section {
        padding: 5rem 0;
    }

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

    .feature-card {
        flex: 1;
    }

    .services-preview {
        flex-wrap: nowrap;
    }

    .testimonials {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .service-card-detailed {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-members {
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .direction-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}