@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #155DFC;
    --dark-blue: #0A3D91;
    --text-dark: #222222;
    --text-gray: #444444;
    --text-light: #777777;
    --bg-light: #f7faff;
    --white: #FFFFFF;
    --border-color: #e5e7eb;
    --success-green: #2ecc71;
    --shadow: 0 10px 30px rgba(21, 93, 252, 0.08);
    --radius: 6px;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-blue);
}

.phone-link {
    display: flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.phone-link svg {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #222;
}

.hero p.subheadline {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Form Styling */
.form-container {
    background: var(--white);
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    align-items: center;
}

.select-wrapper {
    position: relative;
    border-right: 1px solid var(--border-color);
    padding: 0 15px;
}

.select-wrapper select {
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px 15px 10px;
    appearance: none;
    background: none;
    cursor: pointer;
    color: var(--text-dark);
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--text-dark);
    pointer-events: none;
}

.zip-input {
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 25px;
    width: 160px;
    outline: none;
}

.btn-quote {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.btn-quote:hover {
    background: var(--dark-blue);
}

.btn-quote svg {
    margin-left: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-gray);
    gap: 10px;
}

.trust-badge .check {
    background: var(--primary-blue);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Brands Bar */
.brands-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.brands-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brands-inner img {
    max-height: 80px;
    transition: all 0.3s ease;
}

.brands-inner img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Content Section */
.info-section {
    padding: 80px 0;
    background-color: #E9F2FF;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.info-content .highlight {
    color: var(--primary-blue);
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    color: var(--success-green);
    margin-right: 15px;
    margin-top: 5px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Bottom CTA section */
.bottom-info {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.bottom-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bottom-info p {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.address {
    margin-bottom: 20px;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Legal Pages */
.legal-page {
    background: #fcfdfe;
    padding-bottom: 100px;
}

.legal-header {
    background: linear-gradient(135deg, #155DFC 0%, #0A3D91 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: -60px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.legal-header p {
    font-size: 18px;
    opacity: 0.9;
}

.legal-card {
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.legal-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.legal-card h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-blue);
    margin-right: 15px;
    border-radius: 2px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-card ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-card li {
    margin-bottom: 12px;
    color: var(--text-gray);
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.legal-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.last-revised {
    font-style: normal;
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.contact-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e1ecff;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo {
        font-size: 24px;
        justify-content: center;
    }

    .phone-link {
        font-size: 18px;
        justify-content: center;
    }

    .legal-header {
        padding: 60px 20px;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-card {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .contact-visual {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p.subheadline {
        font-size: 18px;
    }

    .form-container {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        padding: 15px;
    }

    .form-group {
        flex-direction: column;
        width: 100%;
    }

    .select-wrapper,
    .zip-input {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .btn-quote {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}