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

:root {
    --primary-color: #2c5f7c;
    --primary-dark: #1a4158;
    --primary-light: #4a8aaf;
    --secondary-color: #8b9c6f;
    --accent-color: #d4a574;
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dfe6e9;
    --error-color: #d63031;
    --success-color: #00b894;
}

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: var(--text-dark);
    background-color: var(--background-white);
}

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

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

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

ul {
    list-style: none;
}

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

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

/* Header & Navigation */
header {
    background-color: var(--background-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

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

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a {
    display: block;
    padding: 15px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-visual {
    margin-top: 40px;
}

.hero-visual img {
    margin: 0 auto;
    max-width: 400px;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 124, 0.3);
}

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

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

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
}

.philosophy-item h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Section */
.services-highlight {
    padding: 80px 0;
    background-color: var(--background-light);
}

.services-highlight h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.process-step {
    padding-left: 80px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--background-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.industries-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.industry-item {
    padding: 25px;
    background-color: var(--background-light);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.industry-item:hover {
    background-color: #e8edf2;
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.industry-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Knowledge Section */
.knowledge-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.knowledge-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.knowledge-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.knowledge-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.knowledge-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.trust-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    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, padding 0.3s ease;
}

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

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6b7c54 100%);
    color: var(--background-white);
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--background-white);
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* 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: 10000;
    padding: 20px;
}

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

.modal-content {
    background-color: var(--background-white);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cookie-option {
    margin-bottom: 25px;
}

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

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

.cookie-option p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-top: 8px;
    margin-left: 28px;
    font-weight: normal;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-medium);
    line-height: 1.7;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.team-member h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Milestones/Timeline Section */
.milestones-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.milestones-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--background-light);
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.approach-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.achievements-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.achievement-item {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.achievement-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Page */
.services-overview {
    padding: 80px 0;
    background-color: var(--background-white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    background-color: var(--background-white);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon-large {
    width: 70px;
    height: 70px;
}

.service-title-block h2 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.service-description p {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-includes {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-includes li {
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

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

/* Service Comparison */
.service-comparison {
    padding: 80px 0;
    background-color: var(--background-light);
}

.service-comparison h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-item {
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.comparison-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.comparison-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Process Info */
.process-info {
    padding: 80px 0;
    background-color: var(--background-white);
}

.process-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.process-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-block {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-box {
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-box p {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Directions Section */
.directions-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.directions-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.directions-text h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-dark);
}

.directions-text h3:first-child {
    margin-top: 0;
}

.directions-text p {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Company Info Section */
.company-info-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.company-info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.company-info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.company-info-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact FAQ */
.contact-faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

/* Contact Approach */
.contact-approach {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.contact-approach h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-approach p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thank-you-info {
    margin: 40px 0;
    text-align: left;
}

.thank-you-info h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thank-you-info p {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.next-steps-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background-color: var(--background-white);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.legal-section li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

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

    .hero {
        padding: 80px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .philosophy-item {
        flex: 0 0 calc(50% - 20px);
    }

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

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

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

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

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

    .testimonial {
        flex: 0 0 calc(50% - 15px);
    }

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

    .industry-item {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .knowledge-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .trust-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

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

    .value-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .team-member {
        flex: 0 0 calc(50% - 15px);
    }

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

    .achievement-item {
        flex: 0 0 calc(50% - 15px);
    }

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

    .comparison-item {
        flex: 0 0 calc(50% - 12.5px);
    }

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

    .contact-details {
        flex: 0 0 60%;
    }

    .contact-additional {
        flex: 0 0 40%;
        padding-left: 30px;
    }

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

    .info-card {
        flex: 0 0 calc(50% - 15px);
    }

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

    .service-header {
        flex-direction: row;
        align-items: center;
    }

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

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .company-info-item {
        flex: 0 0 calc(50% - 15px);
    }
}

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

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

    .nav-menu li {
        border-bottom: none;
    }

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

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

    .hero-visual img {
        max-width: 500px;
    }

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

    .philosophy-item {
        flex: 1;
    }

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

    .service-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

    .knowledge-grid,
    .trust-grid,
    .values-grid,
    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-item,
    .trust-item,
    .value-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    .achievement-item {
        flex: 0 0 calc(25% - 22.5px);
    }

    .footer-content {
        flex-wrap: nowrap;
    }

    .footer-col {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

    .info-cards {
        flex-wrap: nowrap;
    }

    .info-card {
        flex: 1;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .cta-section,
    footer {
        display: none;
    }
}