* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2E5C99;
}

.btn-get-quote {
    background: #FF9800;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #FF9800;
}

.btn-get-quote:hover {
    background: #F57C00;
    border-color: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Hero Section with Background */
.hero-bg {
    background: linear-gradient(rgba(46, 92, 153, 0.85), rgba(46, 92, 153, 0.85)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 100px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 92, 153, 0.7) 0%, rgba(122, 181, 29, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: #fff;
}

.hero-left h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
}

/* Form Container */
.form-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2E5C99;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-step {
    display: none;
}

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

label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    margin-top: 20px;
}

label:first-of-type {
    margin-top: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: #FF9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.input-hint {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

/* Radio Groups */
.radio-group {
    margin-bottom: 25px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.radio-label:hover {
    border-color: #FF9800;
    background: #fff8f0;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #FF9800;
    margin: 0;
    vertical-align: middle;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: #FF9800;
    background: #fff8f0;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.radio-label span {
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.radio-label input[type="radio"]:checked + span {
    color: #FF9800;
    font-weight: 600;
}

/* Inline Radio Groups */
.radio-group-inline {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.radio-label-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-label-inline:hover {
    border-color: #FF9800;
    background: #fff8f0;
}

.radio-label-inline input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF9800;
    margin: 0;
}

.radio-label-inline:has(input[type="radio"]:checked) {
    border-color: #FF9800;
    background: #fff8f0;
}

.radio-label-inline span {
    color: #374151;
    font-size: 15px;
    font-weight: 500;
}

/* Yes/No Radio Buttons */
.radio-group-yesno {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}

.radio-label-yesno {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    height: 70px;
    margin: 0 !important;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: start;
}

.radio-label-yesno:hover {
    border-color: #FF9800;
    background: #fff8f0;
}

.radio-label-yesno input[type="radio"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #FF9800;
    margin: 0;
}

.radio-label-yesno:has(input[type="radio"]:checked) {
    border-color: #FF9800;
    background: #fff8f0;
}

.radio-label-yesno span {
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    text-align: center;
    line-height: 22px;
}

/* Checkbox */
.checkbox-container {
    margin: 25px 0;
}

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

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #FF9800;
    margin-top: 2px;
}

.checkbox-label span {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.checkbox-label a {
    color: #2E5C99;
    text-decoration: underline;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn-back,
.btn-continue,
.btn-submit {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-back {
    background: #f3f4f6;
    color: #374151;
}

.btn-back:hover {
    background: #e5e7eb;
}

.btn-continue,
.btn-submit {
    background: #FF9800;
    color: #fff;
}

.btn-continue:hover,
.btn-submit:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #7AB51D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #2E5C99;
    margin-bottom: 12px;
}

.success-message p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
}

/* Carriers Section */
.carriers {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

.carriers-banner {
    background: #FF9800;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.carriers-banner p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.banner-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #FF9800;
}

.carriers-content {
    padding: 50px 0;
}

.carriers-logos-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.carrier-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2E5C99;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-orange {
    display: inline-block;
    background: #FF9800;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-orange:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.why-choose h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2E5C99;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    color: #7AB51D;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #2E5C99;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #fff;
}

.how-it-works h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2E5C99;
    text-align: center;
    margin-bottom: 50px;
}

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

.step-card {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #2E5C99;
    margin-bottom: 12px;
}

.step-card p {
    color: #4b5563;
    line-height: 1.6;
}

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

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2E5C99;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #7AB51D;
    transition: all 0.3s;
}

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

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #2E5C99;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 15px;
}

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

.testimonials h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #2E5C99;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stars {
    color: #FF9800;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2E5C99 0%, #1e3d66 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e7ff;
}

.btn-cta {
    display: inline-block;
    background: #FF9800;
    color: #fff;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #e5e7eb;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.footer-logo p {
    color: #9ca3af;
}

.footer-links h4 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #FF9800;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .radio-group-inline {
        flex-direction: column;
    }

    .radio-label-inline {
        width: 100%;
    }
    
    /* Mobile: Smaller header logo and button */
    .header-logo img {
        height: 35px;
    }
    
    .header-logo-text {
        font-size: 20px;
    }
    
    .btn-get-quote {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* Mobile: Uniform carrier logo sizes */
    .carriers-logos img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }
}
