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

html {
    scroll-behavior: smooth;
}

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

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.btn-primary {
    background-color: #0d9488;
    color: white;
    border-color: #0d9488;
}

.btn-primary:hover {
    background-color: #0f766e;
    border-color: #0f766e;
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: white;
    color: #1e3a8a;
}

.btn-outline {
    background-color: transparent;
    color: #0d9488;
    border-color: #0d9488;
}

.btn-outline:hover {
    background-color: #0d9488;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.logo-text:hover {
    color: #0d9488;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d9488;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
}

.phone-link:hover {
    color: #0d9488;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #93c5fd;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-icon {
    color: #10b981;
    margin-bottom: 1rem;
}

.features-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

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

.section-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-icon {
    color: #0d9488;
    margin-bottom: 1.5rem;
}

.step-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-icon {
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #6b7280;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    color: #0d9488;
    margin-bottom: 1.5rem;
}

.benefit-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6b7280;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-style: italic;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author {
    color: #6b7280;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.cta-description {
    color: #e5e7eb;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.form-container {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
}

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

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #0d9488;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-link {
    color: #0d9488;
    text-decoration: none;
    font-size: 14px;
}

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

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
}

.footer-title {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #0d9488;
}

.footer-contact {
    color: #9ca3af;
}

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

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.form-input:focus,
.form-select:focus {
    outline: 2px solid #0d9488;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }
    
    .btn-secondary {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}



/* About Page Specific Styles */
.about-hero {
    text-align: center;
}

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

.nav-link.active {
    color: #0d9488;
    font-weight: 600;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background-color: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.image-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background-color: #f9fafb;
}

.mission-statement {
    margin: 3rem 0 4rem;
    display: flex;
    justify-content: center;
}

.mission-box {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.2);
}

.mission-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    color: #0d9488;
    margin-bottom: 1.5rem;
}

.value-title {
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-description {
    color: #6b7280;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-photo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.member-photo svg {
    border-radius: 50%;
}

.member-name {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-title {
    color: #0d9488;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Why Choose Us Expanded Section */
.why-choose-expanded {
    padding: 80px 0;
    background-color: #f9fafb;
}

.expanded-benefits {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-features {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.benefit-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

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

.stat-label {
    color: #93c5fd;
    font-size: 1rem;
    font-weight: 500;
}

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

/* Contact Page Specific Styles */
.contact-hero {
    text-align: center;
}

.contact-info {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #0d9488;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #6b7280;
    margin: 0;
}

.contact-form-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #0d9488;
}

.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 1024px) {
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-box {
        padding: 2rem;
    }
    
    .benefit-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}


/* Legal Pages Specific Styles */
.legal-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #059669 100%);
    padding: 120px 0 80px;
    text-align: center;
}

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

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.effective-date,
.last-updated {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Table of Contents */
.table-of-contents {
    padding: 60px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.toc-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.toc-link {
    display: block;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: #059669;
    color: white;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #059669;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 2rem 0 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* Information Types Grid */
.info-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-type {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.info-type h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.info-type p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

/* Use Categories */
.use-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.use-category {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.use-category h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.use-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.use-category li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-category {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border: 1px solid #0ea5e9;
}

.security-category h4 {
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.security-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #0369a1;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    padding: 1.5rem;
    background: #fefce8;
    border-radius: 8px;
    border-left: 4px solid #eab308;
}

.right-item h4 {
    font-weight: 600;
    color: #713f12;
    margin-bottom: 0.5rem;
}

.right-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #a16207;
}

/* Contact Info Legal */
.contact-info-legal {
    margin: 2rem 0;
}

.contact-details-legal {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-details-legal h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-details-legal p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.contact-details-legal a {
    color: #059669;
    text-decoration: none;
}

.contact-details-legal a:hover {
    text-decoration: underline;
}

/* Services Grid for Terms */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #059669;
}

.service-item h4 {
    font-weight: 600;
    color: #14532d;
    margin-bottom: 0.5rem;
}

.service-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #166534;
}

/* Use Sections */
.use-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.use-section {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* Payment Info */
.payment-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.payment-info h4 {
    font-weight: 600;
    color: #7f1d1d;
    margin-bottom: 0.5rem;
}

.payment-info p {
    margin: 0;
    color: #991b1b;
}

/* Fees Grid */
.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fee-category {
    padding: 1.5rem;
    background: #fffbeb;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.fee-category h4 {
    font-weight: 600;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.fee-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #92400e;
}

/* Disclaimer Items */
.disclaimer-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-item {
    padding: 1.5rem;
    background: #fef7ff;
    border-radius: 8px;
    border-left: 4px solid #a855f7;
}

.disclaimer-item h4 {
    font-weight: 600;
    color: #581c87;
    margin-bottom: 0.5rem;
}

.disclaimer-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #7c3aed;
}

/* Liability Notice */
.liability-notice {
    padding: 2rem;
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    margin: 2rem 0;
}

.liability-notice p {
    margin-bottom: 1rem;
    color: #991b1b;
    font-weight: 500;
}

.liability-notice p:last-child {
    margin-bottom: 0;
}

/* General Provisions */
.general-provisions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.provision-item {
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.provision-item h4 {
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.provision-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #0369a1;
}

/* Legal Links */
.legal-link {
    color: #059669;
    text-decoration: none;
    font-weight: 500;
}

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

/* Legal Footer Note */
.legal-footer-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.legal-footer-note p {
    margin: 0;
    color: #64748b;
    font-style: italic;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
    
    .info-types,
    .use-categories,
    .security-measures,
    .rights-grid,
    .services-grid,
    .fees-grid,
    .disclaimer-items,
    .general-provisions {
        grid-template-columns: 1fr;
    }
}

