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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    color: #2a2a2a;
}

h4 {
    font-size: 1.25rem;
    color: #2a2a2a;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1a3a70;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin: 0 0 0 2rem;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2c5aa0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a70 100%);
    color: #fff;
    padding: 5rem 0;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

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

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

.btn-outline {
    background-color: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-outline:hover {
    background-color: #2c5aa0;
    color: #fff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

.section-intro.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.125rem;
    color: #555;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #555;
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Company Story */
.company-story {
    background-color: #f8f9fa;
}

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

.story-content p {
    font-size: 1.125rem;
    color: #555;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.philosophy-highlights {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.highlight-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2c5aa0;
    font-weight: 600;
}

.service-link:hover {
    text-decoration: underline;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Statistics Section */
.statistics-section {
    background-color: #2c5aa0;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

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

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5aa0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial footer {
    font-size: 0.875rem;
    color: #666;
}

.testimonial cite {
    font-style: normal;
}

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

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.industry-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

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

.insights-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.insight-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.value-block h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2c5aa0;
    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;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a70 100%);
    color: #fff;
    text-align: center;
}

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

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

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

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

.section-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #555;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.role {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* Achievements Timeline */
.achievements-section {
    background-color: #f8f9fa;
}

.achievements-timeline {
    margin-top: 2rem;
}

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

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

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    min-width: 100px;
}

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

/* Approach Grid */
.approach-section {
    background-color: #fff;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.approach-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.75rem;
}

/* Values Detail */
.values-detail-section {
    background-color: #f8f9fa;
}

.values-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.value-detail {
    margin-bottom: 2.5rem;
}

.value-detail h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.75rem;
}

/* Impact Section */
.impact-section {
    background-color: #f8f9fa;
}

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

.impact-content p {
    font-size: 1.125rem;
    color: #555;
}

/* Services List Page */
.services-overview {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.services-list {
    background-color: #fff;
}

.service-item-detailed {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #2c5aa0;
}

.service-header h2 {
    margin: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-description {
    margin-bottom: 2rem;
}

.service-description p {
    font-size: 1.125rem;
    color: #555;
}

.service-details h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details ul {
    margin-bottom: 2rem;
}

.service-details li {
    margin-bottom: 0.75rem;
}

.service-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.service-meta p {
    margin-bottom: 0.75rem;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

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

/* Comparison Section */
.comparison-section {
    background-color: #fff;
}

.comparison-table {
    max-width: 800px;
    margin: 2rem auto 0;
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.comparison-label {
    flex: 1;
    min-width: 250px;
    font-weight: 600;
}

.comparison-recommendation {
    flex: 1;
    min-width: 250px;
    color: #2c5aa0;
    font-weight: 600;
}

/* Contact Page */
.contact-intro {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #555;
}

.contact-main {
    background-color: #fff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-description {
    flex: 1.5;
    min-width: 300px;
}

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

.contact-block h2,
.contact-block h3 {
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
}

.contact-description h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* Company Info Section */
.company-info-section {
    background-color: #f8f9fa;
}

.company-data {
    max-width: 600px;
}

.company-data p {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}

.company-data p:last-child {
    border-bottom: none;
}

/* Directions Section */
.directions-section {
    background-color: #fff;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.direction-item p {
    margin-bottom: 1rem;
}

/* Contact Hours */
.contact-hours-section {
    background-color: #f8f9fa;
}

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

.hours-table {
    margin: 2rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: #fff;
    border-radius: 4px;
}

.hours-day {
    font-weight: 600;
}

.hours-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* Thank You Page */
.thank-you-hero {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

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

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

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

.thank-you-message {
    font-size: 1.25rem;
    color: #555;
}

.next-steps-section {
    background-color: #fff;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.meanwhile-section {
    background-color: #f8f9fa;
}

.meanwhile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.meanwhile-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

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

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2c5aa0;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

.reassurance-section {
    background-color: #fff;
    text-align: center;
}

.reassurance-content {
    max-width: 700px;
    margin: 0 auto;
}

.reassurance-contact {
    margin-top: 2rem;
}

.reassurance-contact p {
    margin-bottom: 0.75rem;
}

.testimonial-highlight {
    background-color: #f8f9fa;
}

.featured-testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-left: 4px solid #2c5aa0;
    border-radius: 4px;
}

.featured-testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.featured-testimonial footer {
    font-size: 1rem;
    color: #666;
}

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

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

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
}

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

.legal-text p {
    margin-bottom: 1.25rem;
}

.legal-text a {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

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

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

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

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

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

.footer-col p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.875rem;
}

/* 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: 1001;
    padding: 1rem;
}

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

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

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

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option:last-child {
    margin-bottom: 0;
}

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

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

.cookie-required {
    font-size: 0.875rem;
    color: #666;
    background-color: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #2c5aa0;
}

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

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

/* Content Columns */
.content-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

/* Mission Content */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 4rem 0 2rem;
        overflow-y: auto;
    }

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

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 0;
    }

    .main-nav a {
        padding: 1rem 2rem;
        display: block;
        border-bottom: 1px solid #e5e5e5;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .service-card,
    .benefit-item,
    .team-member,
    .industry-item,
    .approach-item {
        max-width: 100%;
    }

    .stats-grid,
    .hero-actions,
    .cta-actions {
        justify-content: center;
    }

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

    .timeline-year {
        min-width: auto;
    }

    .service-header {
        flex-direction: column;
    }

    .service-price {
        font-size: 1.75rem;
    }

    .comparison-row {
        flex-direction: column;
    }

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

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

    .hours-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .featured-testimonial {
        padding: 2rem 1.5rem;
    }

    .featured-testimonial p {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .step-card .step-number {
        font-size: 2.5rem;
    }
}