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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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 */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content {
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

/* Sections */
section {
    padding: 60px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Company Intro */
.company-intro {
    background-color: var(--bg-white);
}

.intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

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

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Philosophy */
.philosophy {
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.point {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

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

/* Services */
.services-highlight {
    background-color: var(--bg-white);
    text-align: center;
}

.services-highlight h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

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

/* Process */
.process {
    background-color: var(--bg-light);
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

/* Testimonials */
.testimonials {
    background-color: var(--bg-white);
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

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

/* Values */
.values {
    background-color: var(--bg-light);
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
}

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

/* Knowledge */
.knowledge {
    background-color: var(--bg-white);
}

.knowledge-content h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.knowledge-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.knowledge-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

/* FAQ */
.faq {
    background-color: var(--bg-light);
}

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

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

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.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 20px 20px;
    line-height: 1.8;
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--bg-white);
}

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

.indicators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.indicator {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.indicator img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.indicator h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.indicator p {
    color: var(--text-light);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

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

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

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

.cta .btn-primary:hover {
    background-color: var(--bg-light);
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

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

.footer-col p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

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

.footer-col a {
    color: rgba(255,255,255,0.8);
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    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-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-actions a {
    color: var(--bg-white);
    text-decoration: underline;
    font-size: 0.875rem;
}

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

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

.modal-content {
    background-color: var(--bg-white);
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-close {
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 20px;
}

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

.cookie-option label {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

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

.cookie-option strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Services Page */
.services-intro {
    background-color: var(--bg-light);
    padding: 40px 0;
    text-align: center;
}

.service-detailed {
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-header img {
    width: 60px;
    height: 60px;
}

.service-header h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.service-header p {
    color: var(--text-light);
    margin-top: 5px;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-description {
    line-height: 1.8;
}

.service-description p {
    margin-bottom: 15px;
}

.service-offerings h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.offerings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.offering-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.offering-item h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.offering-item p {
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.service-note {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--bg-white);
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
}

.service-benefits,
.process-section {
    background-color: var(--bg-white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

/* Contact Page */
.contact-info {
    background-color: var(--bg-white);
}

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

.contact-main {
    flex: 2;
    min-width: 300px;
}

.contact-main h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.detail-item img {
    width: 50px;
    height: 50px;
}

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

.detail-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.detail-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-sidebar {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

.about-location {
    background-color: var(--bg-light);
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-features {
    flex: 1;
    min-width: 300px;
}

.location-features h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-features ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.location-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.direction-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

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

.company-info-section {
    background-color: var(--bg-light);
    text-align: center;
}

.company-details {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.company-details p {
    padding: 10px 0;
    line-height: 1.8;
}

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

.nearby-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.nearby-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

.international-clients {
    background-color: var(--bg-light);
}

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

.international-content p {
    margin-bottom: 15px;
}

/* About Page */
.story {
    background-color: var(--bg-white);
}

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

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

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission {
    background-color: var(--bg-light);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.point-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 10px;
}

.point-item img {
    width: 50px;
    height: 50px;
}

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

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

.member-info h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.milestones {
    background-color: var(--bg-light);
}

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

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.timeline-content {
    flex: 1;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 10px;
}

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

.values-deep {
    background-color: var(--bg-white);
}

.values-detailed {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-detail {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

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

.value-detail p {
    line-height: 1.8;
}

.achievements {
    background-color: var(--bg-light);
}

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

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

.achievement {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-white);
    border-radius: 10px;
}

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

.achievement p {
    color: var(--text-light);
}

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

.commitment-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.commitment-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.commitment-item img {
    width: 50px;
    height: 50px;
}

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

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

.thank-you-content {
    max-width: 900px;
    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;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.while-you-wait {
    margin-bottom: 50px;
}

.while-you-wait h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.link-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    text-align: left;
    transition: var(--transition);
    border: 2px solid transparent;
}

.link-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.link-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.link-card p {
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    background-color: var(--bg-white);
}

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

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

.legal-text h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-text ul li,
.legal-text ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    list-style: disc;
}

.legal-text ol li {
    list-style: decimal;
}

.legal-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

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

    .main-nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }

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

    .main-nav a {
        display: block;
        padding: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    section {
        padding: 40px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }
}