/* Reset and 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, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Header and Navigation */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.3rem;
    color: #2563eb;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: #4a5568;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a.active,
.main-nav a:hover {
    color: #2563eb;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.hero-text {
    max-width: 550px;
    color: #ffffff;
}

.hero-text h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Split Content Layout - Core Archetype Pattern */
.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-large,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.cta-primary,
.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    opacity: 1;
}

.cta-secondary,
.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
    opacity: 1;
}

.cta-large {
    background: #2563eb;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    opacity: 1;
}

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

.intro-section,
.process-section,
.capabilities-section,
.additional-services,
.quality-section {
    background: #ffffff;
}

.services-preview,
.testimonials-section,
.additional-info-section {
    background: #f7fafc;
}

/* Section Headers */
.section-header-center,
.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header-center p,
.section-title-center + p {
    color: #718096;
    font-size: 1.1rem;
}

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    stroke: #ffffff;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
    margin-top: 1rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 60px;
}

.step-content h5 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #718096;
}

/* Capabilities List */
.capabilities-list {
    list-style: none;
    margin: 2rem 0;
}

.capabilities-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.capabilities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #1a202c;
}

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

/* Additional Services List */
.services-list-alt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item-alt {
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-item-alt h5 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.service-item-alt p {
    color: #718096;
    margin-bottom: 1rem;
}

.price-alt {
    display: block;
    font-weight: 700;
    color: #2563eb;
    font-size: 1.1rem;
}

/* Quality Features */
.quality-features {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.quality-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quality-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.quality-label {
    color: #718096;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 0;
}

.cta-content-centered h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-content-centered .cta-large {
    background: #ffffff;
    color: #2563eb;
}

.cta-content-centered .cta-large:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    opacity: 1;
}

/* Form Section - Split Layout */
.form-section {
    background: #f7fafc;
    padding: 5rem 0;
}

.split-form-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-left,
.form-right {
    flex: 1;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-benefit svg {
    stroke: #10b981;
    flex-shrink: 0;
}

.form-benefit span {
    color: #4a5568;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #4a5568;
}

.form-group-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: #1a202c;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

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

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

.footer-column p {
    color: #a0aec0;
    line-height: 1.8;
}

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

.footer-column ul li a {
    color: #a0aec0;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 15px 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;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    color: #e2e8f0;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.sticky-cta-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
    opacity: 1;
}

/* Page Hero */
.page-hero,
.page-hero-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 0 3rem;
    text-align: center;
}

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

.page-hero h2,
.page-hero-small h2 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Detailed */
.services-detailed {
    padding: 5rem 0;
}

.service-detail-item {
    margin-bottom: 5rem;
}

.service-features {
    margin: 1.5rem 0;
    list-style: none;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.price-box {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.price-label {
    display: block;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.3rem;
}

.price-note {
    display: block;
    color: #718096;
    font-size: 0.9rem;
}

/* Additional Info Grid */
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

.info-card h4 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.info-card p {
    color: #718096;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: #ffffff;
}

.contact-details h5 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #718096;
    line-height: 1.8;
}

.contact-details a {
    color: #2563eb;
}

.contact-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
}

.contact-note h5 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-note p {
    color: #718096;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.85);
    padding: 1.5rem;
    color: #ffffff;
}

.map-overlay p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

/* Visit Section */
.visit-section {
    background: #f7fafc;
    padding: 4rem 0;
}

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

.visit-content h3 {
    margin-bottom: 1.5rem;
}

.visit-content p {
    color: #718096;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

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

.faq-item h5 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #718096;
}

/* About Page Styles */
.about-intro,
.values-section,
.equipment-section {
    padding: 5rem 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
}

.value-item h5 {
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #718096;
}

.team-section {
    background: #f7fafc;
    padding: 5rem 0;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.team-member h4 {
    color: #1a202c;
    margin: 1.5rem 1rem 0.5rem;
}

.team-member .role {
    display: block;
    color: #2563eb;
    font-weight: 500;
    margin: 0 1rem 1rem;
}

.team-member p {
    color: #718096;
    padding: 0 1rem 1.5rem;
}

.equipment-list {
    list-style: none;
    margin: 2rem 0;
}

.equipment-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.equipment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
}

.timeline-section {
    padding: 5rem 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 80px;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #718096;
}

.partners-section {
    background: #f7fafc;
    padding: 5rem 0;
}

.partners-intro {
    text-align: center;
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.partners-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
}

.partners-note p {
    color: #718096;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    stroke: #ffffff;
}

.thanks-content h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.service-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #2563eb;
    font-weight: 500;
}

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

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

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

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

.step-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step-box h4 {
    color: #1a202c;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.step-box p {
    color: #718096;
    font-size: 0.95rem;
}

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

.contact-reminder {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.contact-reminder p {
    color: #718096;
}

.contact-reminder a {
    color: #2563eb;
    text-decoration: underline;
}

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

.legal-text {
    line-height: 1.8;
}

.legal-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.legal-text h3 {
    color: #1a202c;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-text h4 {
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text ul {
    list-style: disc;
}

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

.legal-text li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-text a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

.legal-table th {
    background: #f7fafc;
    color: #1a202c;
    font-weight: 600;
}

.legal-table td {
    color: #4a5568;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    color: #718096;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .split-form-layout {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-year {
        min-width: 50px;
        font-size: 1.2rem;
    }

    .timeline-year::after {
        right: -20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        transform: translateX(0);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    section {
        padding: 3rem 0;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .testimonials-grid,
    .info-grid,
    .faq-grid,
    .team-grid {
        flex-direction: column;
    }

    .quality-features {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-content-centered h3 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}