/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D3E50;
    background-color: #FFFFFF;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #2D3E50;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   Container & Layout
   ======================================== */

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

/* ========================================
   Header & Navigation
   ======================================== */

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B7EA1;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2D3E50;
    transition: all 0.3s ease;
}

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

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

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

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

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

.nav-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2D3E50;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3B7EA1;
    border-bottom-color: #3B7EA1;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #3B7EA1;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #2D6280;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 126, 161, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3B7EA1;
    border: 2px solid #3B7EA1;
}

.btn-secondary:hover {
    background-color: #3B7EA1;
    color: #FFFFFF;
}

.btn-text {
    background-color: transparent;
    color: #6B7280;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #2D3E50;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #F8FBFD 0%, #FFFFFF 100%);
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2D3E50;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual svg {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Page Hero
   ======================================== */

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #F8FBFD 0%, #FFFFFF 100%);
    text-align: center;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Sections
   ======================================== */

section {
    padding: 3rem 0;
}

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

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #4B5563;
}

/* ========================================
   Philosophy Section
   ======================================== */

.philosophy {
    background-color: #F9FAFB;
}

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

.philosophy-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.philosophy-item h3 {
    color: #2D3E50;
    margin-bottom: 0.75rem;
}

.philosophy-item p {
    color: #4B5563;
    margin-bottom: 0;
}

/* ========================================
   Benefits Section
   ======================================== */

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

.benefit-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3B7EA1;
}

.benefit-card h3 {
    color: #2D3E50;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4B5563;
    margin-bottom: 0;
}

/* ========================================
   Process Section
   ======================================== */

.process {
    background-color: #F9FAFB;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B7EA1 0%, #6FB3D2 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #2D3E50;
}

.step-content p {
    color: #4B5563;
    margin-bottom: 0;
}

/* ========================================
   Testimonials Section
   ======================================== */

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

.testimonial {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #6FB3D2;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #2D3E50;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #E5E7EB;
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: #2D3E50;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #6B7280;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ========================================
   Stats Section
   ======================================== */

.stats {
    background: linear-gradient(135deg, #3B7EA1 0%, #2D6280 100%);
    color: #FFFFFF;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Industries Section
   ======================================== */

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background-color: #F3F4F6;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9375rem;
    color: #4B5563;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background-color: #3B7EA1;
    color: #FFFFFF;
    border-color: #3B7EA1;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    background-color: #F9FAFB;
}

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

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2D3E50;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   Insights Section
   ======================================== */

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

.insight-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #6FB3D2;
}

.insight-card h3 {
    color: #2D3E50;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #4B5563;
    margin-bottom: 0;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-final {
    background: linear-gradient(135deg, #F8FBFD 0%, #FFFFFF 100%);
}

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

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

.cta-content p {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

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

.cta-box {
    background-color: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.cta-box p {
    color: #4B5563;
    margin-bottom: 2rem;
}

.cta-box a {
    color: #3B7EA1;
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: #2D3E50;
    color: #E5E7EB;
    padding: 3rem 0 1.5rem;
}

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

.footer-column h3,
.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column p {
    color: #D1D5DB;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.footer-column a {
    color: #D1D5DB;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: #6FB3D2;
}

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

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   Cookie Banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D3E50;
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cookie-actions {
    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.75);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

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

.cookie-modal-content {
    background-color: #FFFFFF;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.cookie-modal-close {
    font-size: 2rem;
    color: #9CA3AF;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: #2D3E50;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.cookie-required {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D1D5DB;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #3B7EA1;
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-category p {
    color: #6B7280;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    text-align: right;
}

/* ========================================
   About Page Styles
   ======================================== */

.story {
    background-color: #FFFFFF;
}

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

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

.content-block p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.values {
    background-color: #F9FAFB;
}

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

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

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

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4B5563;
    margin-bottom: 0;
}

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

.team-member {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3B7EA1;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.team-member p {
    color: #4B5563;
    margin-bottom: 0;
}

.methodology {
    background-color: #F9FAFB;
}

.methodology-content p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4B5563;
    line-height: 1.7;
}

.methodology-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.methodology-block {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3B7EA1;
}

.methodology-block h3 {
    margin-bottom: 0.75rem;
}

.methodology-block p {
    color: #4B5563;
    margin-bottom: 0;
}

.achievements {
    background-color: #FFFFFF;
}

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

.timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #E5E7EB;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B7EA1 0%, #6FB3D2 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
}

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

.timeline-content p {
    color: #4B5563;
    margin-bottom: 0;
}

.approach {
    background-color: #F9FAFB;
}

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

.comparison-item {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.comparison-item h3 {
    color: #3B7EA1;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #4B5563;
    margin-bottom: 0;
}

.approach-conclusion {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #2D3E50;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ========================================
   Services Page Styles
   ======================================== */

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

.service-item {
    background-color: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #3B7EA1;
}

.service-item.featured {
    border-color: #3B7EA1;
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3B7EA1 0%, #6FB3D2 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.service-header {
    background: linear-gradient(135deg, #F8FBFD 0%, #FFFFFF 100%);
    padding: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.service-title-group h2 {
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-price {
    margin-top: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3B7EA1;
}

.service-content {
    padding: 2rem;
}

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

.service-includes h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #2D3E50;
}

.service-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-includes li {
    color: #4B5563;
    padding-left: 1.75rem;
    position: relative;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3B7EA1;
    font-weight: 700;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    color: #92400E;
    font-size: 0.9375rem;
    border-radius: 4px;
}

.service-benefits {
    background-color: #F9FAFB;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
}

.benefit-item svg {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #4B5563;
    margin-bottom: 0;
}

.process-comparison {
    background-color: #FFFFFF;
}

.comparison-table {
    overflow-x: auto;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #E5E7EB;
}

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

.comparison-row.header {
    background-color: #F9FAFB;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    min-width: 100px;
    text-align: center;
    font-size: 0.9375rem;
}

.comparison-cell.feature {
    text-align: left;
    font-weight: 600;
    color: #2D3E50;
}

.comparison-cell.highlight {
    background-color: #F0F9FF;
    color: #3B7EA1;
    font-weight: 600;
}

/* ========================================
   Contact Page Styles
   ======================================== */

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

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

.contact-block h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.contact-detail-item svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

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

.contact-detail-item p {
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.contact-detail-item a {
    color: #3B7EA1;
    text-decoration: underline;
}

.detail-note {
    font-size: 0.875rem;
    color: #6B7280;
    font-style: italic;
}

.directions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.direction-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #3B7EA1;
}

.direction-item p {
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.sidebar-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: #4B5563;
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-card li {
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.sidebar-note {
    font-size: 0.875rem;
    color: #6B7280;
    font-style: italic;
    margin-bottom: 0;
}

.company-info {
    background-color: #F9FAFB;
}

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

.company-detail {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
}

.company-detail h3 {
    font-size: 1rem;
    color: #3B7EA1;
    margin-bottom: 0.5rem;
}

.company-detail p {
    color: #4B5563;
    margin-bottom: 0;
}

/* ========================================
   Thank You Page Styles
   ======================================== */

.thank-you-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8FBFD 0%, #FFFFFF 100%);
}

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

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

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
}

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

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

.step-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3B7EA1;
}

.step-card .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #4B5563;
    margin-bottom: 0;
}

.while-waiting {
    margin: 3rem 0;
}

.while-waiting h2 {
    margin-bottom: 2rem;
}

.waiting-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waiting-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.waiting-link:hover {
    background-color: #E5E7EB;
    transform: translateX(8px);
}

.waiting-link svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.waiting-link h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #2D3E50;
}

.waiting-link p {
    color: #6B7280;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.thank-you-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.thank-you-footer p {
    color: #4B5563;
    margin-bottom: 0;
}

.thank-you-footer a {
    color: #3B7EA1;
    text-decoration: underline;
}

/* ========================================
   Legal Pages Styles
   ======================================== */

.legal-page {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.legal-container {
    max-width: 900px;
}

.legal-intro {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.legal-date {
    color: #6B7280;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E5E7EB;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #2D3E50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3B7EA1;
}

.legal-section h3 {
    color: #3B7EA1;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section li {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #3B7EA1;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #2D6280;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background-color: #F9FAFB;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
    font-size: 0.9375rem;
}

.cookie-table th {
    font-weight: 600;
    color: #2D3E50;
}

.cookie-table td {
    color: #4B5563;
}

.cookie-table code {
    background-color: #F3F4F6;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #3B7EA1;
}

/* ========================================
   Tablet Styles (min-width: 768px)
   ======================================== */

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

    h2 {
        font-size: 2rem;
    }

    .nav-toggle {
        display: none;
    }

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

    .hero {
        padding: 5rem 0;
    }

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

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

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .cookie-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

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

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

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

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

    .methodology-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }

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

    .company-detail {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

    .waiting-links {
        flex-direction: row;
    }

    .waiting-link {
        flex: 1;
    }
}

/* ========================================
   Desktop Styles (min-width: 1024px)
   ======================================== */

@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }

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

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

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

    .philosophy-item {
        flex: 1;
    }

    .benefits-layout {
        flex-wrap: nowrap;
    }

    .benefit-card {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .insight-card {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

    .methodology-blocks {
        flex-wrap: nowrap;
    }

    .methodology-block {
        flex: 1;
    }

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

    .comparison-item {
        flex: 1;
    }

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

    .benefit-item {
        flex: 1;
    }

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

    .company-detail {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

    .comparison-table {
        display: block;
    }
}