/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

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

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

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

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

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
}

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

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

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    color: #2d3436;
    border-radius: 6px;
    transition: background-color 0.2s;
}

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

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

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

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

/* Page Hero */
.page-hero {
    background-color: #f8faf9;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
}

/* Thank You Hero */
.thank-you-hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #3d7d68 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.thank-you-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #2c5f4f;
    border: 2px solid #2c5f4f;
}

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

.btn-outline {
    background-color: transparent;
    color: #2c5f4f;
    border: 2px solid #2c5f4f;
}

.btn-outline:hover {
    background-color: #2c5f4f;
    color: #ffffff;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

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

section h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: #636e72;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background-color: #f8faf9;
    border-radius: 8px;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.content-block p {
    margin-bottom: 1.2rem;
    color: #2d3436;
}

/* Philosophy Section */
.philosophy {
    background-color: #f8faf9;
}

/* Stats Section */
.stats {
    background-color: #2c5f4f;
    color: #ffffff;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8e5;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.service-icon svg {
    margin: 0 auto;
}

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

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

/* Featured Services */
.featured-services {
    background-color: #f8faf9;
}

/* Approach Section */
.approach {
    background-color: #ffffff;
}

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

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f4f;
    opacity: 0.3;
}

.step h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.5rem;
}

.step p {
    color: #636e72;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background-color: #f8faf9;
}

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

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

.testimonial p {
    font-style: italic;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    color: #636e72;
    font-size: 0.95rem;
}

/* Values Section */
.values {
    background-color: #ffffff;
}

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

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

.value-item h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

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

/* Industries Section */
.industries {
    background-color: #f8faf9;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e1e8e5;
}

.industry-item h3 {
    font-size: 1.1rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

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

/* Insights Section */
.insights {
    background-color: #ffffff;
}

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

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

.insights-content p {
    margin-bottom: 1.2rem;
    color: #2d3436;
    line-height: 1.8;
}

/* Knowledge Section */
.knowledge {
    background-color: #f8faf9;
}

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

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

.knowledge-item h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.knowledge-item p {
    color: #636e72;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
}

.faq-services {
    background-color: #f8faf9;
}

.faq-contact {
    background-color: #f8faf9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e1e8e5;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c5f4f;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c5f4f;
    transition: transform 0.3s;
}

.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.5rem 1.5rem;
    color: #636e72;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c5f4f 0%, #3d7d68 100%);
    color: #ffffff;
    text-align: center;
}

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

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

.cta-simple {
    background-color: #f8faf9;
    text-align: center;
}

.cta-simple h2 {
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 2rem;
}

/* Story Section */
.story {
    background-color: #f8faf9;
}

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

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

.story-content p {
    margin-bottom: 1.2rem;
    color: #2d3436;
    line-height: 1.8;
}

/* Milestones Timeline */
.milestones {
    background-color: #ffffff;
}

.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

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

.timeline-content h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #636e72;
    line-height: 1.7;
}

/* Team Section */
.team {
    background-color: #f8faf9;
}

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

.team-member {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e1e8e5;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.3rem;
}

.member-role {
    display: block;
    font-size: 0.95rem;
    color: #2c5f4f;
    opacity: 0.7;
    margin-bottom: 1rem;
}

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

/* Values Detailed */
.values-detailed {
    background-color: #ffffff;
}

.values-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-detailed {
    padding: 1.5rem;
    background-color: #f8faf9;
    border-radius: 8px;
}

.value-detailed h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.value-detailed p {
    color: #636e72;
    line-height: 1.7;
}

/* Achievements Section */
.achievements {
    background-color: #f8faf9;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e1e8e5;
}

.achievement-item h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

.achievement-item p {
    color: #636e72;
    line-height: 1.7;
}

/* Philosophy Extended */
.philosophy-extended {
    background-color: #ffffff;
}

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

.philosophy-text p {
    margin-bottom: 1.2rem;
    color: #2d3436;
    line-height: 1.8;
}

/* Trust Section */
.trust {
    background-color: #f8faf9;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.trust-item h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

.trust-item p {
    color: #636e72;
    line-height: 1.7;
}

/* Services Page */
.services-intro {
    background-color: #f8faf9;
    padding: 2rem 0;
}

.services-main {
    background-color: #ffffff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
}

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

.service-description {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #636e72;
}

/* Benefits Grid */
.services-benefits {
    background-color: #f8faf9;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit-item h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

.benefit-item p {
    color: #636e72;
    line-height: 1.7;
}

/* Process Steps */
.process {
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f4f;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
}

.process-step p {
    color: #636e72;
    line-height: 1.7;
}

/* Comparison Grid */
.comparison {
    background-color: #f8faf9;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.comparison-item h3 {
    font-size: 1.1rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

.comparison-item p {
    color: #636e72;
    line-height: 1.7;
}

/* Group Services */
.group-services {
    background-color: #ffffff;
}

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

.group-option {
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f4f;
}

.group-option h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.group-option p {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.group-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f4f;
}

.group-note {
    text-align: center;
    color: #636e72;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Contact Page */
.contact-main {
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-block h2 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-block p {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: #2c5f4f;
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #636e72;
    margin-top: 0.8rem;
}

.contact-about h2 {
    font-size: 1.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-about p {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Directions */
.directions {
    background-color: #f8faf9;
}

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

.directions-content p {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.directions-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.direction-item h3 {
    font-size: 1.2rem;
    color: #2c5f4f;
    margin-bottom: 0.7rem;
}

.direction-item p {
    color: #636e72;
    line-height: 1.7;
}

.directions-note {
    color: #636e72;
    font-size: 0.95rem;
    text-align: center;
}

/* Company Info */
.company-info {
    background-color: #ffffff;
}

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

.company-details p {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Response Time */
.response-time {
    background-color: #ffffff;
}

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

.response-content p {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.response-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.response-content li {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-content {
    background-color: #ffffff;
}

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

.thank-you-text h2 {
    font-size: 1.8rem;
    color: #2c5f4f;
    margin-bottom: 1.5rem;
}

.thank-you-text p {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.next-steps {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.step-card {
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #2c5f4f;
    font-weight: 600;
    text-decoration: underline;
}

.link-arrow:hover {
    color: #234a3d;
}

/* Legal Pages */
.legal-content {
    background-color: #ffffff;
}

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

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

.legal-text h3 {
    font-size: 1.3rem;
    color: #2c5f4f;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    color: #2d3436;
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    color: #2d3436;
    margin-bottom: 0.7rem;
}

.legal-text strong {
    color: #2c5f4f;
}

.legal-text a {
    color: #2c5f4f;
    text-decoration: underline;
}

.text-muted {
    color: #636e72;
}

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

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

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

.footer-section p {
    opacity: 0.9;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f4f;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    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 {
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .mobile-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
        gap: 0.5rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

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

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

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

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

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

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

    .footer-section {
        flex: 1;
    }

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

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

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

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

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

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

    .approach-steps {
        gap: 3rem;
    }

    .step,
    .process-step {
        flex-direction: row;
        gap: 2rem;
    }

    .step-number,
    .step-num {
        min-width: 80px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .services-grid {
        gap: 2.5rem;
    }

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

    .testimonials-grid {
        gap: 2.5rem;
    }

    .industries-grid {
        gap: 2rem;
    }

    .industry-item {
        flex: 1 1 calc(33.333% - 1.4rem);
    }

    .knowledge-grid {
        gap: 2.5rem;
    }

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

    .team-grid {
        gap: 2.5rem;
    }

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

    .achievements-grid {
        gap: 2rem;
    }

    .achievement-item {
        flex: 1 1 calc(33.333% - 1.4rem);
    }

    .benefits-grid {
        gap: 2rem;
    }

    .benefit-item {
        flex: 1 1 calc(33.333% - 1.4rem);
    }

    .comparison-grid {
        gap: 2rem;
    }

    .comparison-item {
        flex: 1 1 calc(33.333% - 1.4rem);
    }

    .directions-options {
        gap: 2rem;
    }

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

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

    .step-card {
        flex: 1 1 calc(33.333% - 1.4rem);
    }
}