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

:root {
    --color-primary: #1a5f7a;
    --color-primary-dark: #134a5e;
    --color-primary-light: #2d7a99;
    --color-secondary: #57c4e5;
    --color-accent: #f39c12;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #e9ecef;
    --color-border: #dee2e6;
    --color-success: #28a745;
    --color-error: #dc3545;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: Georgia, "Times New Roman", serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

li {
    margin-bottom: 0.5rem;
}

/* Header and Navigation */
.site-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    position: relative;
}

.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: var(--color-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

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

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

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

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

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

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

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.philosophy-content p {
    margin-bottom: 1.5rem;
}

.philosophy-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.pillar img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.cta-block {
    text-align: center;
    margin-top: 3rem;
}

/* Statistics Section */
.statistics-section {
    background-color: var(--color-primary);
    color: white;
}

.statistics-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

/* Process Section */
.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.process-step {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

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

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

/* Insights Section */
.insights-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.insight-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.industry-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.industry-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    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.5rem 1.5rem;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.email-link {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: var(--color-text);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

.footer-column a:hover {
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

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

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

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

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

.modal-header h2 {
    margin: 0;
}

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

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

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

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

.cookie-category > div {
    flex: 1;
}

.cookie-category h3 {
    margin-bottom: 0.5rem;
}

.cookie-category p {
    color: var(--color-text-light);
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    transition: var(--transition);
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--color-primary);
}

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

input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

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

/* About Page Styles */
.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

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

.story-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

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

.mission-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.mission-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission-point {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-bg-light);
    border-radius: 8px;
}

.value-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

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

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.member-avatar img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
}

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 80px;
}

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

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

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-item img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 0.5rem;
}

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

.trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.trust-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-overview {
    padding-bottom: 2rem;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

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

.service-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.service-header {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-bg-light);
}

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

.service-title-price {
    flex: 1;
}

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

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

.service-description h3 {
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-description ul {
    margin-top: 1rem;
}

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

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

.comparison-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.comparison-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.comparison-card > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.comparison-card ul {
    list-style-position: inside;
}

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

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

.benefit-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

/* Contact Page Styles */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

.info-block {
    margin-bottom: 3rem;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

.detail-card {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.detail-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.detail-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

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

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

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

.location-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

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

.info-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-card h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

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

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

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

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

.step {
    flex: 1;
    min-width: 250px;
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.step .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thank-you-tips {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.contact-reminder {
    background-color: var(--color-bg-light);
    padding: 3rem 0;
}

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

.email-highlight {
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

.legal-section h2 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-border);
}

.legal-section h3 {
    color: var(--color-primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-bg-light);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 250px;
        box-shadow: var(--shadow-md);
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-list.active {
        max-height: 400px;
    }

    .nav-list li {
        margin-bottom: 0;
    }

    .nav-list a {
        padding: 1rem;
        display: block;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }

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

    .stats-grid {
        gap: 1rem;
    }

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

    .benefit-item,
    .benefit-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .page-hero {
        padding: 2rem 0;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .cookie-actions,
    .thank-you-actions {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
    }
}