/* 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: #2d3748;
    background-color: #ffffff;
}

.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: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    text-decoration: none;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 26px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: translateY(-1px);
}

.logo i {
    color: #667eea;
    font-size: 1.75rem;
}

.logo-accent {
    color: #667eea;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.cta-secondary {
    background: #f7fafc;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: #4a5568;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: #f7fafc;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    overflow: hidden;
}

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

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-search-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-search-title {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-search-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "travelerType travelerType"
        "visaLength visaLength"
        "startDate endDate"
        "button button";
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-search-form .form-group:nth-child(1) {
    grid-area: travelerType;
}

.hero-search-form .visa-length-group {
    grid-area: visaLength;
}

.hero-search-form .form-group-date:nth-child(3) {
    grid-area: startDate;
}

.hero-search-form .form-group-date:nth-child(4) {
    grid-area: endDate;
}

.hero-search-form .search-button-group {
    grid-area: button;
    display: flex;
    justify-content: center;
}

.hero-search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.hero-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.hero-search-btn:active {
    transform: translateY(0);
}

.hero-search-form .form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    margin-top: 1rem;
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
}

.trust-badge i {
    color: #48bb78;
    font-size: 1rem;
}

.hero-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.status-badge {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.progress-bar {
    background: #e2e8f0;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    width: 75%;
    border-radius: 4px;
    animation: progressAnimation 2s ease-in-out infinite alternate;
}

@keyframes progressAnimation {
    0% { width: 65%; }
    100% { width: 85%; }
}

.card-text {
    color: #4a5568;
    margin-bottom: 1rem;
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #48bb78;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Value Propositions */
.value-props {
    padding: 40px 0 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a202c;
}

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

.prop-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f7fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.prop-icon i {
    font-size: 2rem;
    color: white;
}

.prop-card h3 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.prop-card p {
    color: #4a5568;
}

/* Plan Search Section - Compact */
.plan-search {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.search-form-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.search-title {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.search-subtitle {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.search-form {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: end;
}

.form-group {
    text-align: left;
}

.search-button-group {
    display: flex;
    align-items: end;
}

.search-button-group .search-btn {
    margin: 0;
    height: 48px;
    padding: 0 24px;
    white-space: nowrap;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-label i {
    color: #667eea;
    font-size: 1rem;
}

.form-select,
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: #2d3748;
    height: 48px;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Date inputs - unified for both mobile and desktop */
.date-input {
    display: block;
    font-family: 'Inter', sans-serif;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px; /* Ensure touch-friendly size */
    width: 100%;
    box-sizing: border-box;
}

.date-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-select {
    cursor: pointer;
}

.search-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    height: 48px;
}

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

.search-btn:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.form-note i {
    color: #48bb78;
}

.ssl-secured-badge {
    font-size: 0.875rem;
    color: #4a5568;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.ssl-secured-badge i {
    color: #6b7280;
}

.mini-review {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.mini-review-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.mini-review-stars i {
    color: #f59e0b;
    font-size: 0.8rem;
}

.mini-review-text {
    font-size: 0.9rem;
    color: #374151;
    margin: 0 0 0.75rem 0;
    font-style: italic;
    line-height: 1.4;
}

.mini-review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mini-review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mini-author-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

.mini-author-uni {
    font-size: 0.7rem;
    color: #6b7280;
    line-height: 1.2;
}

.mini-review-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s ease;
}

.mini-review-link:hover {
    opacity: 0.8;
}

/* Form Validation Styles */
.form-select.error,
.form-input.error {
    border-color: #f56565;
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.1);
}

.error-message {
    color: #f56565;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message i {
    font-size: 0.75rem;
}

/* Mobile Responsive for Search Form */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    
    .search-button-group {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .search-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .search-form {
        padding: 1.5rem;
    }
    
    .search-title {
        font-size: 1.75rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-button-group {
        grid-column: 1;
        margin-top: 0.5rem;
    }
    
    .search-btn {
        width: 100%;
        max-width: none;
    }
    
    .comparison-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Trusted Partners - Mobile */
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-logo {
        padding: 1.5rem;
        min-height: 100px;
        min-width: 180px;
    }
    
    .partner-logo img {
        max-width: 160px;
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .plan-search {
        padding: 20px 0;
    }
    
    .search-form-container {
        padding: 0 10px;
    }
    
    .search-form {
        padding: 1rem;
    }
    
    .form-select,
    .form-input {
        padding: 10px 12px;
        font-size: 0.9rem;
        height: 44px;
    }
    
    .search-btn {
        height: 44px;
        font-size: 0.9rem;
    }
    
    .comparison-cta-title {
        font-size: 1.5rem;
    }
    
    /* Trusted Partners - Small Mobile */
    .trusted-partners {
        padding: 60px 0;
    }
    
    .partners-grid {
        gap: 1.5rem;
    }
    
    .partner-logo {
        padding: 1rem;
        min-height: 80px;
        min-width: 120px;
    }
    
    .partner-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.step-icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

.cta-container {
    text-align: center;
}

/* Plan Comparison */
.plan-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #f7fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.featured-row {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    display: block;
}

.savings {
    font-size: 0.875rem;
    color: #48bb78;
    font-weight: 500;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.badge.instant {
    background: #48bb78;
}

.badge.fast {
    background: #ed8936;
}

.badge.standard {
    background: #4299e1;
}

.text-green {
    color: #48bb78;
}

.text-red {
    color: #f56565;
}

.comparison-note {
    text-align: center;
    color: #4a5568;
    font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.trust-content {
    display: grid;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating i {
    color: #f6ad55;
    margin-right: 2px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.review-author strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #4a5568;
    font-size: 0.875rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #4a5568;
    margin: 0;
}

.trust-badges-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.trust-badge-large i {
    font-size: 1.5rem;
    color: #667eea;
}

.trust-badge-large span {
    font-size: 0.875rem;
    color: #4a5568;
    font-weight: 500;
}

/* Chat Callout */
.chat-callout {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.chat-callout .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.chat-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1.5rem;
}

.chat-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.chat-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.125rem;
}

.chat-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.chat-bubble {
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: 20px 20px 5px 20px;
    color: #2d3748;
    position: relative;
    max-width: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chat-bubble p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.chat-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.chat-action {
    margin-top: 0;
}

.chat-action .btn {
    background: white;
    color: #667eea;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 1rem;
}

.chat-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4,
.footer-section h5 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    color: white;
}

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

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}

.footer-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #4a5568;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #718096;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5); }
    100% { box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        display: none;
    }
    
        .logo {
        font-size: 1.25rem;
        padding-left: 0.5rem;
    }

    .logo-image {
        height: 23px;
    }

    .logo i {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-search-section {
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-search-container {
        padding: 1.5rem;
    }
    
    .hero-search-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .hero-search-form .form-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "travelerType"
            "visaLength"
            "startDate"
            "endDate"
            "button";
    }
    
    .hero-search-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-trust-badges {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .props-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .chat-callout {
        padding: 30px 0;
    }
    
    .chat-callout .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .chat-right {
        gap: 1rem;
    }
    
    .chat-visual {
        justify-content: center;
    }
    
    .chat-content h3 {
        font-size: 1.5rem;
    }
    
    .chat-content p {
        font-size: 1rem;
    }
    
    .chat-bubble {
        max-width: 280px;
        padding: 1rem 1.25rem;
    }
    
    .chat-action .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .floating-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button span {
        display: none;
    }
    
    /* Trusted Partners - Mobile */
    .partners-grid {
        gap: 2rem;
    }
    
    .partner-logo {
        padding: 1.5rem;
        min-height: 100px;
        min-width: 180px;
    }
    
    .partner-logo img {
        max-width: 160px;
        max-height: 70px;
    }
    
    /* Provider logos in table - Mobile */
    .provider-cell {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .provider-logo {
        max-width: 40px;
        max-height: 24px;
    }
    
    .search-cta-container.horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .help-action {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .search-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .search-ctas .btn {
        width: 100%;
        max-width: 280px;
        padding: 10px 16px;
    }
    
    .comparison-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 75px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-props,
    .how-it-works,
    .plan-comparison,
    .trust-section {
        padding: 60px 0;
    }
    
    .prop-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    /* Hero Search Form - Small Mobile */
    .hero-search-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .hero-search-title {
        font-size: 1.125rem;
    }
    
    .hero-search-form .form-grid {
        gap: 0.75rem;
    }
    
    .comparison-cta-container {
        padding: 2rem 1rem;
    }
    
    .comparison-cta-title {
        font-size: 1.5rem;
    }
}

/* Secondary Search Form in Comparison Section */
.secondary-search-container {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.secondary-search-title {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    text-align: center;
}

.secondary-search-subtitle {
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1rem;
}

.secondary-search-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.secondary-search-btn {
    background: #48bb78;
    font-weight: 600;
}

.secondary-search-btn:hover {
    background: #38a169;
    box-shadow: 0 8px 16px rgba(72, 187, 120, 0.3);
}

/* Simplified search section styles */
.search-cta-container {
    text-align: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.search-cta-container.horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1rem 1.5rem;
}

.help-text {
    flex: 1;
}

.help-action {
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.search-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Comparison CTA styles */
.comparison-cta-container {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    margin-top: 3rem;
}

.comparison-cta-title {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.comparison-cta-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.comparison-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Trusted Partners Section */
.trusted-partners {
    padding: 40px 0 80px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    min-height: 120px;
    min-width: 220px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.partner-logo img {
    max-width: 200px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Provider cell styles for comparison table */
.provider-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.provider-logo {
    max-width: 50px;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.provider-cell strong {
    font-weight: 600;
    color: #1a202c;
}

/* Search Results Styles */
.search-results-container {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.results-header h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.results-header p {
    color: #4a5568;
    font-size: 1.1rem;
}

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

/* Plan Card Styles */
.plan-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: fit-content;
}

.plan-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
    transform: translateY(-2px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.provider-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.provider-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    font-weight: 700;
    font-size: 1rem;
    color: #4a5568;
}

.provider-details {
    flex: 1;
}

.provider-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.plan-name {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.3;
}

.pay-later-badge {
    background: #48bb78;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
}

.period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.plan-features h4 {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f7fafc;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #4a5568;
}

.feature-check {
    color: #48bb78;
    font-weight: bold;
    font-size: 1rem;
}

.plan-actions {
    margin-top: auto;
}

.buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.buy-btn:active {
    transform: translateY(0);
}

/* Plans Grid Layout */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.25rem;
    }
    
    .provider-info {
        gap: 0.75rem;
    }
    
    .provider-logo,
    .provider-logo-placeholder {
        width: 40px;
        height: 40px;
    }
    
    .amount {
        font-size: 1.75rem;
    }
}

/* Buy Page Styles */
.buy-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 100vh;
}

.buy-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.buy-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.buy-header h1 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.buy-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.buy-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
}

.form-section h3 i {
    color: #667eea;
}

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

.buy-form .form-group {
    display: flex;
    flex-direction: column;
}

.buy-form .form-group.full-width {
    grid-column: 1 / -1;
}

.buy-form label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.buy-form input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.buy-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.form-actions .btn-secondary {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.form-actions .btn-secondary:hover {
    border-color: #4a5568;
    color: #2d3748;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.form-actions .btn-primary:disabled {
    opacity: 0.7;
    transform: none;
    cursor: not-allowed;
}

/* Mobile responsive for buy page */
@media (max-width: 768px) {
    .buy-page {
        padding: 100px 0 60px;
    }
    
    .buy-form-container {
        margin: 0 1rem;
    }
    
    .buy-header {
        padding: 1.5rem;
    }
    
    .buy-header h1 {
        font-size: 1.5rem;
    }
    
    .buy-form {
        padding: 1.5rem;
    }
    
    .buy-form .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0 0 0;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
}

.security-badge i {
    color: #6b7280;
    font-size: 1rem;
}

/* Email Group Styling */
.email-group {
    margin: 2rem 0;
}

.email-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: block;
}

.email-group input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.email-group input:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.email-group .form-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #6a737d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-group .form-note i {
    color: #667eea;
}

/* Checkout Steps */
.checkout-steps {
    margin: 1rem 0 0 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.checkout-steps h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    text-align: center;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.1rem;
    padding: 0.3rem 0.2rem;
    background: #f8f9fa;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 50px;
}

.step-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #9ca3af;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.65rem;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(156, 163, 175, 0.3);
    margin: 0;
}

.step-item span {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.0;
    min-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 8px;
}

.security-notice i {
    color: #38a169;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.security-notice p {
    margin: 0;
    color: #2d3748;
    font-size: 0.9rem;
}

/* Mobile styles for new elements */
@media (max-width: 768px) {
    .security-badges {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
        margin: 1rem 0 0 0;
    }

    .security-badge {
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .security-badge i {
        font-size: 0.9rem;
    }

    .checkout-steps {
        padding: 0.5rem;
        margin: 0.75rem 0 0 0;
    }

    .checkout-steps h4 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .steps-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .step-item {
        padding: 0.25rem 0.15rem;
        gap: 0.05rem;
        min-height: 40px;
        background: #f8f9fa;
    }

    .step-item:hover {
        transform: none;
        background: #e9ecef;
    }

    .step-number {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        margin: 0;
        background: #9ca3af;
        box-shadow: 0 1px 2px rgba(156, 163, 175, 0.3);
    }

    .step-item span {
        font-size: 0.6rem;
        line-height: 0.9;
        min-height: 1.2em;
        margin: 0;
    }

    .security-notice {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .email-group {
        margin: 1.5rem 0;
    }

    .email-group input {
        padding: 0.875rem;
    }
}

/* Confirmation Page Styles */
.confirmation-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 100vh;
}

.confirmation-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.confirmation-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.confirmation-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.confirmation-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.confirmation-details {
    padding: 2rem;
}

.confirmation-details h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #48bb78;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.25rem;
}

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

.step-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.confirmation-actions .btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.demo-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.notice-icon {
    color: #d69e2e;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content h4 {
    color: #744210;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.notice-content p {
    color: #744210;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Mobile responsive for confirmation page */
@media (max-width: 768px) {
    .confirmation-page {
        padding: 100px 0 60px;
    }
    
    .confirmation-card {
        margin: 0 1rem;
    }
    
    .confirmation-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .confirmation-header h1 {
        font-size: 1.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .confirmation-details {
        padding: 1.5rem;
    }
    
    .confirmation-details h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        padding: 0 1.5rem 1.5rem;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .demo-notice {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

/* Homepage-specific How It Works Section */
.homepage-how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.homepage-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.homepage-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.homepage-step-content h3 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.homepage-step-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.homepage-step-icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.homepage-step-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

/* Mobile responsiveness for homepage how-it-works */
@media (max-width: 768px) {
    .homepage-steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .homepage-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .homepage-step-icon {
        width: 50px;
        height: 50px;
    }
    
    .homepage-step-icon i {
        font-size: 1.25rem;
    }
}

/* Plan Guidance Section */
.plan-guidance {
    padding: 80px 0 40px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    margin: -1rem auto 3rem auto;
    max-width: 700px;
    line-height: 1.6;
}

/* Our Approach Cards */
.guidance-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.approach-card {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e6edff;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem auto;
}

.approach-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.approach-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Sample Plans Section */
.sample-plans-section {
    margin-bottom: 4rem;
}

.sample-title {
    text-align: center;
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.sample-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.sample-plan-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.sample-plan-card.recommended {
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

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

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-provider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sample-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
}

.provider-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.plan-price-preview {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sample-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.sample-period {
    color: #4a5568;
    font-size: 0.9rem;
}

.why-recommended {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.why-recommended.budget {
    background: #fef3f2;
    border-color: #fecaca;
}

.why-recommended h4 {
    color: #14532d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-recommended.budget h4 {
    color: #991b1b;
}

.why-recommended p {
    color: #166534;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.why-recommended.budget p {
    color: #991b1b;
}

.coverage-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #4a5568;
}

.coverage-item i {
    color: #48bb78;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Key Differences Section */
.key-differences {
    margin-bottom: 4rem;
}

.key-differences h3 {
    text-align: center;
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.difference-item {
    background: #f7fafc;
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.difference-item:hover {
    background: #edf2f7;
    transform: translateY(-2px);
}

.difference-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.difference-item h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.difference-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* CTA Section */
.guidance-cta-container {
    text-align: center;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
}

.guidance-cta-title {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.guidance-cta-subtitle {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guidance-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .plan-guidance {
        padding: 60px 0;
    }
    
    .guidance-approach {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
    
    .sample-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sample-plan-card {
        padding: 1.25rem;
    }
    
    .differences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guidance-cta-container {
        padding: 2rem 1.5rem;
    }
    
    .guidance-cta-title {
        font-size: 1.5rem;
    }
    
    .guidance-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .guidance-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* OSHC Guide Page Styles */

.guide-card {
    margin-bottom: 2rem;
}

.guide-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.guide-icon.danger {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

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

.provider-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.provider-item i {
    color: #48bb78;
    font-size: 1.1rem;
}

.provider-item span {
    font-weight: 500;
    color: #1a202c;
}

/* Visa Essentials */
.visa-essentials {
    margin: 1.5rem 0;
}

.essential-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f7fafc;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.essential-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.essential-item.highlight {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 1px solid #fc8181;
}

.essential-label {
    font-weight: 600;
    color: #4a5568;
    flex: 1;
}

.essential-value {
    font-weight: 500;
    color: #1a202c;
    flex: 2;
    text-align: right;
}

.essential-item.highlight .essential-label,
.essential-item.highlight .essential-value {
    color: #742a2a;
}

/* FAQ Container */
.faq-container {
    margin: 1.5rem 0;
}

.faq-item-modern {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    background: #edf2f7;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-item-modern:last-child {
    margin-bottom: 0;
}

.faq-item-modern h4 {
    color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item-modern h4 i {
    color: #667eea;
}

.faq-item-modern p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.faq-item-modern a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.faq-item-modern a:hover {
    text-decoration: underline;
}

/* Simple FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    background: #667eea;
    color: white;
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-answer {
    padding: 2rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer h4 {
    color: #1a202c;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.important-note {
    background: #fef3f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    color: #991b1b;
    font-weight: 500;
}

.simple-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.simple-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-list {
    margin-top: 1.5rem;
}

.contact-provider {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-provider:last-child {
    margin-bottom: 0;
}

.contact-provider strong {
    color: #667eea;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Center hero title only for FAQ page */
.faq-page .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-page .hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.faq-page .hero-trust-badges {
    justify-content: center;
}

/* Mobile Responsive for Guide */
@media (max-width: 768px) {
    .provider-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .essential-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .essential-value {
        text-align: center;
    }
    
    .guide-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .provider-item {
        padding: 0.75rem;
    }
    
    .essential-item {
        padding: 0.75rem 1rem;
    }
    
    .faq-item-modern {
        padding: 1.25rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 1.5rem;
    }
    
    .contact-provider {
        padding: 1rem;
    }
}

/* Radio Button Group Styles */
.traveler-type-group {
    width: 100%;
}

.visa-length-group {
    width: 100%;
}

.visa-coverage-note {
    font-size: 0.8rem;
    color: #718096;
    margin: 1rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.5rem 0;
    background: none;
    border: none;
    font-weight: 400;
}

.visa-coverage-note i {
    color: #718096;
    font-size: 0.875rem;
}

.radio-button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
    position: relative;
}

.radio-option label:hover {
    border-color: #667eea;
    background: #f8faff;
}

.radio-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    font-weight: 600;
}

.radio-option input[type="radio"]:checked + label::before {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.75rem;
    font-weight: bold;
}

.radio-option input[type="radio"]:focus + label {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Mobile CTA Banner */
.mobile-cta-banner {
    display: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mobile-cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.mobile-trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.mobile-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #4a5568;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-trust-badge i {
    color: #48bb78;
    font-size: 0.85rem;
}

.mobile-trust-badge .flag-emoji {
    font-size: 0.9rem;
    margin-right: 0.1rem;
}

.mobile-logos {
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.75rem;
    opacity: 0.8;
}

.mobile-logo {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.2s ease;
}

.mobile-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Mobile optimizations for radio buttons */
@media (max-width: 768px) {
    .mobile-cta-banner {
        display: block;
        margin-bottom: 1.25rem;
    }
    
    .mobile-logos {
        display: flex; /* Show on mobile */
    }
    
    .radio-button-group {
        gap: 0.5rem;
    }
    
    .radio-option label {
        padding: 10px 6px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .radio-option input[type="radio"]:checked + label::before {
        top: 3px;
        right: 4px;
        font-size: 0.7rem;
    }
    
    .visa-coverage-note {
        font-size: 0.75rem;
        padding: 0.4rem 0;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .visa-coverage-note i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mobile-cta-banner {
        margin-bottom: 1rem;
    }
    
    .mobile-cta-title {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        margin-top: 25px;
    }
    
    .mobile-trust-badges {
        gap: 0.4rem;
    }
    
    .mobile-trust-badge {
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .mobile-trust-badge i {
        font-size: 0.75rem;
    }
    
    .mobile-trust-badge .flag-emoji {
        font-size: 0.8rem;
    }
    
    .mobile-logos {
        gap: 0.6rem;
        margin-top: 0.5rem;
    }
    
    .mobile-logo {
        height: 40px;
    }
    
    .radio-button-group {
        gap: 0.4rem;
    }
    
    .radio-option label {
        padding: 8px 4px;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .radio-option input[type="radio"]:checked + label::before {
        top: 2px;
        right: 3px;
        font-size: 0.65rem;
    }
}

/* Legal Document Styles (Terms of Service, Privacy Policy, etc.) */
.legal-page .hero {
    padding: 100px 0 40px;
}

.legal-page .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-page .hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.legal-page .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.legal-content {
    padding: 40px 0 80px;
    background: white;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.legal-document h3 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.legal-document h3:first-of-type {
    margin-top: 1.5rem;
}

.legal-document p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.legal-document p:last-child {
    margin-bottom: 0;
}

.legal-document ol,
.legal-document ul {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
}

.legal-document ol li,
.legal-document ul li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.legal-document ol li:last-child,
.legal-document ul li:last-child {
    margin-bottom: 0;
}

.legal-document strong {
    color: #2d3748;
    font-weight: 600;
}

.legal-document hr {
    margin: 2.5rem 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

/* Mobile responsive for legal documents */
@media (max-width: 768px) {
    .legal-page .hero {
        padding: 80px 0 30px;
    }
    
    .legal-page .hero-title {
        font-size: 2rem;
    }
    
    .legal-document {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content {
        padding: 30px 0 60px;
    }
    
    .legal-document h3 {
        font-size: 1.3rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
} 