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

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better keyboard navigation */
*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Back Button Styles */
.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
}

.back-button:hover {
    background: #667eea;
    color: white;
    transform: translateX(-4px);
}

.back-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Main Header with Logo */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Layout Adjustments - See line 1857 for main hero styles */

/* Testimonials Section */
.testimonials-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff6b35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-badge {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 1rem 0;
    font-style: italic;
}

.testimonial-author {
    display: block;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

/* Carrier Logos - Text-based */
.carrier-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrier-logo-text:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Specific carrier styling */
.trust-item:nth-child(1) .carrier-logo-text {
    color: #e31837; /* State Farm Red */
    font-weight: 700;
}

.trust-item:nth-child(2) .carrier-logo-text {
    color: #0066cc; /* Allstate Blue */
    font-weight: 700;
}

.trust-item:nth-child(3) .carrier-logo-text {
    color: #003d82; /* Progressive Blue */
    font-weight: 700;
}

.trust-item:nth-child(4) .carrier-logo-text {
    color: #00a651; /* Geico Green */
    font-weight: 700;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Address Auto-fill */
.address-autocomplete {
    position: relative;
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.address-suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.address-suggestion:hover {
    background-color: #f8f9fa;
}

.address-suggestion:last-child {
    border-bottom: none;
}

/* Custom Accessibility Widget */
#accessibility-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

#accessibility-toggle {
    background: #667eea;
    color: white;
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10000;
}

#accessibility-toggle:hover {
    background: #5a6fd8;
    transform: scale(1.05);
}

#accessibility-toggle:focus {
    outline: 3px solid #ff6b35;
    outline-offset: 2px;
}

.accessibility-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    min-width: 250px;
    border: 2px solid #667eea;
    z-index: 10001;
}

.accessibility-menu h3 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.accessibility-option {
    margin-bottom: 1rem;
}

.accessibility-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.accessibility-option input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.accessibility-option button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.accessibility-option button:hover {
    background: #e55a2b;
}

/* Accessibility Features */
.high-contrast {
    filter: contrast(150%) brightness(120%);
}

.high-contrast * {
    background: white !important;
    color: black !important;
    border-color: black !important;
}

/* Exclude accessibility widget from high contrast filter */
.high-contrast #accessibility-widget,
.high-contrast #accessibility-widget * {
    filter: none !important;
    background: initial !important;
    color: initial !important;
    border-color: initial !important;
}

/* Accessibility Widget - Always visible in high contrast */
.high-contrast #accessibility-widget {
    filter: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.high-contrast #accessibility-toggle {
    background: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.high-contrast .accessibility-menu {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.high-contrast .accessibility-menu h3 {
    color: #000000 !important;
    display: block !important;
    visibility: visible !important;
}

.high-contrast .accessibility-option label {
    color: #000000 !important;
    display: block !important;
    visibility: visible !important;
}

.high-contrast .accessibility-option button {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    display: block !important;
    visibility: visible !important;
}

.large-text {
    font-size: 1.2em !important;
}

.large-text h1, .large-text h2, .large-text h3 {
    font-size: 1.5em !important;
}

.enhanced-focus *:focus {
    outline: 4px solid #ff6b35 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.4) !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
}

/* Enhanced focus for specific elements */
.enhanced-focus button:focus,
.enhanced-focus input:focus,
.enhanced-focus select:focus,
.enhanced-focus textarea:focus,
.enhanced-focus a:focus {
    outline: 4px solid #ff6b35 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.4) !important;
    background-color: rgba(255, 107, 53, 0.1) !important;
    border: 2px solid #ff6b35 !important;
}

/* Enhanced focus for form elements */
.enhanced-focus .form-group input:focus,
.enhanced-focus .form-group select:focus,
.enhanced-focus .form-group textarea:focus {
    outline: 4px solid #ff6b35 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.4) !important;
    border: 3px solid #ff6b35 !important;
    background-color: rgba(255, 107, 53, 0.05) !important;
}

/* Enhanced focus for buttons */
.enhanced-focus .btn-primary:focus,
.enhanced-focus .btn-secondary:focus,
.enhanced-focus .cta-button:focus {
    outline: 4px solid #ffffff !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.05) !important;
}

/* Enhanced focus for links */
.enhanced-focus a:focus {
    outline: 4px solid #ff6b35 !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.4) !important;
    background-color: rgba(255, 107, 53, 0.1) !important;
    text-decoration: underline !important;
}

/* Reset states when classes are removed */
body:not(.high-contrast) {
    filter: none;
}

body:not(.large-text) {
    font-size: initial;
}

body:not(.large-text) h1,
body:not(.large-text) h2,
body:not(.large-text) h3 {
    font-size: initial;
}

body:not(.enhanced-focus) *:focus {
    outline: initial;
    box-shadow: initial;
}

/* Google Places API specific styling */
.address-main {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.address-secondary {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}

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

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

/* Hero Section - OLD STYLES REMOVED - See line 1857 for current hero styles */

/* CTA Button for general use */
.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: #ff5252;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

/* Insurance Grid - Moderne Card-Darstellung wie im Screenshot */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.insurance-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
    text-align: center;
}

.insurance-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .insurance-card {
        padding: 16px;
        gap: 10px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .insurance-card {
        padding: 14px;
    }
}

.trust-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.reviews span {
    color: #666;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2d3748;
}

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

.feature {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-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 24px;
}

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

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.feature p {
    color: #666;
    font-size: 1.1rem;
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 50%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #666;
    font-weight: 500;
}

/* Form Styles */
.quote-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 24px;
}

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

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

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

.form-group input:valid {
    border-color: #48bb78;
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #f56565;
}

/* Date Input Styling - Einheitliches Aussehen auf allen Geräten */
.form-group input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f8fafc !important;
    color: #2d3748 !important;
    position: relative;
    padding: 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.form-group input[type="date"]:focus {
    background: white !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none !important;
}

.form-group input[type="date"]:valid {
    border-color: #48bb78 !important;
}

.form-group input[type="date"]:invalid:not(:placeholder-shown) {
    border-color: #f56565 !important;
}

/* Kalender-Icon stylen */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    color: #667eea;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23667eea'%3e%3cpath fill-rule='evenodd' d='M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group input[type="date"]::-webkit-inner-spin-button,
.form-group input[type="date"]::-webkit-outer-spin-button {
    display: none;
}

/* Mobile-spezifische Anpassungen für Date Input */
@media (max-width: 768px) {
    .form-group input[type="date"] {
        font-size: 16px !important; /* Verhindert Zoom auf iOS */
        padding: 16px !important;
    }
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover {
    background: #cbd5e0;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 2px solid #48bb78;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.2);
}

.success-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 24px;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-message h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 700;
}

.success-message p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.success-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.success-item i {
    font-size: 1.5rem;
    color: #48bb78;
    width: 24px;
    text-align: center;
}

.success-item span {
    font-weight: 500;
    color: #2d3748;
    font-size: 1rem;
}

.success-note {
    background: #e6fffa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #38b2ac;
    color: #234e52;
    font-style: italic;
    margin-top: 20px;
    font-size: 1rem;
}

.success-actions {
    margin-top: 30px;
    text-align: center;
}

.success-actions .btn-primary {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.success-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(72, 187, 120, 0.4);
    background: linear-gradient(135deg, #38a169, #2f855a);
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2d3748;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Secondary CTA */
.secondary-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.secondary-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    color: #e2e8f0;
}

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

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-section a.active {
    color: #48bb78;
    font-weight: 600;
}

.footer-section a[href^="tel:"] {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-section a[href^="tel:"]:hover {
    color: #38a169;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Sticky CTA for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.sticky-cta .cta-button {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* OLD hero styles removed - see line 2314 for current responsive hero styles */
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 24px;
        margin: 0 16px;
    }
    
    .form-container h2 {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .sticky-cta {
        display: block;
    }
    
    .secondary-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* OLD hero styles removed - see line 2403 for current responsive hero styles */
    
    .form-container {
        padding: 20px;
        margin: 0 8px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error {
    border-color: #f56565;
    background: #fed7d7;
}

.form-group .error-message {
    color: #f56565;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message {
    display: block;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.cta-button:focus,
.btn-primary:focus,
.btn-secondary:focus,
input:focus,
select:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Font Awesome Icons - restored */

/* Legal Pages Styles */
.legal-header {
    background: #2d3748;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: #48bb78;
    font-size: 1.8rem;
}

.header-nav {
    display: flex;
    gap: 30px;
}

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

.header-nav a:hover,
.header-nav a.active {
    color: white;
}

.legal-content {
    padding: 60px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-wrapper h1 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 16px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info strong {
    color: #2d3748;
    font-weight: 600;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .legal-wrapper {
        padding: 30px 20px;
        margin: 0 16px;
    }
    
    .legal-wrapper h1 {
        font-size: 2.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1rem;
    }
}

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

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-section .section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 700;
}

.how-it-works-section .section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: none; /* Video ausgeblendet - Steps sind jetzt zentriert */
}

.how-it-works-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: none; /* Video ausgeblendet */
    border-radius: 16px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 700px;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.step-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive for How It Works */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-section .section-header h2 {
        font-size: 2rem;
    }
    
    .how-it-works-section .section-header p {
        font-size: 1.1rem;
    }
    
    .how-it-works-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }
    
    .steps-container {
        gap: 24px;
    }
    
    .step-item {
        padding: 20px;
        gap: 16px;
        max-width: 100%;
        width: 100%;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .how-it-works-video {
        height: 300px;
    }
    
    
    .hero .container {
        padding-top: 60px;
    }
}

/* ==========================
   HERO SECTION REDESIGN
   ========================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 90vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
    width: 100%;
}

/* Force video visibility on desktop - Critical for desktop display */
@media (min-width: 769px) {
    .hero-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 60px !important;
    }
    
    .hero-video {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-video-player {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 600px !important;
        height: auto !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .hero .container {
        display: block !important;
    }
}

.hero-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
}

.hero-video-player {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.hero-video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-form h3 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.hero-address-field {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    justify-content: center;
}

.hero-address-field .address-autocomplete {
    flex: 1;
}

.hero-address-field input {
    padding: 18px 20px;
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.hero-submit-btn {
    white-space: nowrap;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

/* ==========================
   HEADER & NAVIGATION
   ========================== */

.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.header-cta {
    display: flex;
    align-items: center;
}

.call-now-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    font-size: 1rem;
}

.call-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

.logo-img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* ==========================
   FOOTER TRUST BADGES
   ========================== */

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.trust-badge {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

/* ==========================
   FORM CONDITIONAL LOGIC
   ========================== */

.form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.form-section h4 {
    color: #495057;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================
   DYNAMIC CARDS
   ========================== */

.driver-card, .vehicle-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.card-header h5 {
    margin: 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
}

.remove-driver-btn, .remove-vehicle-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.remove-driver-btn:hover, .remove-vehicle-btn:hover {
    background: #c82333;
}

.card-body {
    padding: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #495057;
}

.radio-label input[type="radio"] {
    margin: 0;
}

#addDriverBtn, #addVehicleBtn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    margin-top: 15px;
}

#addDriverBtn:hover, #addVehicleBtn:hover {
    background: #218838;
}

/* ==========================
   DISCLAIMER STYLING
   ========================== */

.form-disclaimer {
    margin: 20px 0;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    max-width: 100%;
    box-sizing: border-box;
}

.disclaimer-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #495057;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.disclaimer-checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.disclaimer-checkbox span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.disclaimer-checkbox a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline;
}

.disclaimer-checkbox a:hover {
    text-decoration: underline;
}

/* ==========================
   SUCCESS MESSAGE UPDATE
   ========================== */

.success-icon i.fa-sparkles {
    color: #ffd700;
    font-size: 3rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* ==========================
   DESKTOP SPECIFIC STYLES
   ========================== */

/* Desktop video styles are now in main desktop media query at line 1767 */

/* ==========================
   RESPONSIVE DESIGN
   ========================== */

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .hero-address-field {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-address-field .address-autocomplete {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-address-field input {
        width: 100%;
        text-align: center;
    }
    
    .hero-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-video-player {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-logo {
        order: 1;
    }
    
    .header-cta {
        order: 2;
    }
    
    .call-now-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-form {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .hero-form h3 {
        font-size: 1.5rem;
    }
    
    .hero-address-field input {
        padding: 16px 18px;
        font-size: 1rem;
    }
    
    .hero-submit-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .form-disclaimer {
        padding: 15px 12px;
        margin: 15px 0;
        max-width: 100%;
    }
    
    .disclaimer-checkbox {
        font-size: 0.8rem;
        gap: 8px;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .disclaimer-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
    }
}
