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

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

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

a {
    color: #0891b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0e7490;
}

ul {
    list-style: none;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0891b2;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: #4b5563;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #0891b2;
}

.nav-cta {
    background-color: #0891b2;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #0e7490;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    padding: 4rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.cta-primary {
    background-color: #0891b2;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #0e7490;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 145, 178, 0.2);
}

/* Intro Cards */
.intro-cards {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0891b2;
    margin-bottom: 1rem;
}

.service-cta {
    width: 100%;
    background-color: #0891b2;
    color: #ffffff;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #0e7490;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    padding: 4rem 0;
    color: #ffffff;
}

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

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-secondary {
    background-color: #ffffff;
    color: #0891b2;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f0f9ff;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0891b2;
}

.testimonial-text p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-intro p {
    color: #64748b;
}

.appointment-form .form-group {
    margin-bottom: 1.5rem;
}

.appointment-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #0891b2;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group span {
    font-weight: 400;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    background-color: #0891b2;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0e7490;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f0f9ff;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.info-card p {
    color: #475569;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
}

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

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

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

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

.footer-col a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta button {
    background-color: #0891b2;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background-color: #0e7490;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(8, 145, 178, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #059669;
}

.cookie-reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #4b5563;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page */
.about-story {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-image {
    flex: 1;
    max-width: 500px;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #0891b2;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.team-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #0891b2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: #64748b;
    line-height: 1.6;
}

/* Equipment Section */
.equipment-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.equipment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.equipment-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    display: flex;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.equipment-icon {
    flex-shrink: 0;
}

.equipment-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.equipment-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-secondary-link {
    display: inline-block;
    background-color: #f0f9ff;
    color: #0891b2;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary-link:hover {
    background-color: #e0f2fe;
    transform: translateY(-2px);
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
    background-color: #ffffff;
}

.service-detail-card {
    background-color: #f8fafc;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #0f172a;
}

.price-tag {
    background-color: #0891b2;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.service-description {
    flex: 2;
    min-width: 300px;
}

.service-description h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin: 1.5rem 0 1rem;
}

.service-description ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.service-description li {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-description p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.recommendation,
.note {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #78350f;
}

.service-action {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
}

.select-service-btn {
    width: 100%;
    background-color: #0891b2;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #0e7490;
    transform: translateY(-2px);
}

/* Pricing Info */
.pricing-info {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.pricing-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.info-box {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.info-box h3 {
    font-size: 1.3rem;
    color: #0891b2;
    margin-bottom: 1rem;
}

.info-box p {
    color: #64748b;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

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

.contact-card {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-card h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #0891b2;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #475569;
    line-height: 1.7;
}

.hours-table {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.hours-row.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: #374151;
}

.time {
    color: #64748b;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #f0f9ff;
    border-radius: 12px;
    overflow: hidden;
}

/* Directions Section */
.directions-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.directions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 3rem;
}

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

.direction-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.direction-icon {
    margin: 0 auto 1.5rem;
}

.direction-card h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.direction-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Accessibility Section */
.accessibility-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.accessibility-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

.accessibility-info p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.thanks-info p {
    color: #0f172a;
    font-size: 1.1rem;
}

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

.next-steps h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 2rem;
}

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

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

.step-number {
    background-color: #0891b2;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

.thanks-actions {
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    text-align: left;
    background-color: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.additional-info h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.additional-info ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.additional-info li {
    color: #78350f;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-box {
    background-color: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: #475569;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

.legal-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #0891b2;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
}

.legal-table thead {
    background-color: #f8fafc;
}

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

.legal-table th {
    font-weight: 600;
    color: #0f172a;
}

.legal-table td {
    color: #475569;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: #f8fafc;
}

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

.cookies-table th {
    font-weight: 600;
    color: #0f172a;
}

.cookies-table td {
    color: #475569;
}

.browser-guides {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-guide {
    flex: 1;
    min-width: 200px;
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.browser-guide h4 {
    font-size: 1.1rem;
    color: #0891b2;
    margin-bottom: 0.75rem;
}

.browser-guide p {
    font-size: 0.9rem;
    color: #64748b;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    text-align: center;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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

    .card-grid,
    .service-cards,
    .testimonial-cards,
    .values-grid,
    .team-cards,
    .equipment-grid,
    .info-boxes,
    .directions-grid,
    .steps-grid {
        flex-direction: column;
    }

    .story-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}
