﻿/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 30px 0 0;
}

.hero-title {
    font-size: 35px;
    font-weight: 700;
    color: #545353;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #545353;
    margin-bottom: 20px;
}

.hero-form-label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.hero-input {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    border: 2px solid #000000;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.hero-input::placeholder {
    color: #999;
}

.hero-help-text {
    font-size: 13px;
    color: #545353;
    margin-bottom: 20px;
}

.hero-link {
    color: #545353;
    text-decoration: underline;
    font-weight: 700;
}

.hero-link:hover {
    color: #2d4560;
}

.hero-btn {
    width: 100%;
    max-width: 300px;
    background-color: #435569;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin-bottom: 15px;
}

.hero-btn:hover {
    background-color: #2d4560;
}

.hero-credit-text {
    font-size: 13px;
    color: #545353;
    margin-bottom: 8px;
}

.hero-phone-text {
    font-size: 13px;
    color: #545353;
    margin-bottom: 0;
}

.hero-phone-link {
    color: #545353;
    font-weight: 700;
    text-decoration: none;
}

.hero-phone-link:hover {
    text-decoration: underline;
}

/* Hero Image */
.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Middle Section: LendSwift Makes It Easy */
.easy-cash-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    border-bottom: 3px solid #7cb342;
}

.easy-cash-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.easy-cash-title {
    font-size: 24px;
    font-weight: 700;
    color: #545353;
    margin-bottom: 25px;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #545353;
}

.checkmark-icon {
    width: 20px;
    height: auto;
    margin-right: 12px;
    flex-shrink: 0;
}

.dollar-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dollar-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Bottom Section Styles */
.bottom-section {
    background-color: #ffffff;
    padding: 30px 0;
}

.bottom-section .container {
    max-width: 100%;
}

.bottom-section .row {
    align-items: flex-start;
}

/* Life Happens Box */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-bottom: 25px;
}

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

.support-list li {
    font-size: 16px;
    color: #545353;
    padding: 3px 0 3px 10px;
    position: relative;
}

.support-list li:before {
    content: "•";
    color: #009B4C;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* View Options Box */
.no-impact-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.no-impact-text strong {
    color: #333;
    font-weight: 700;
}

/* Offer Code Form */
.offer-code-form {
    margin-top: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: block;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-code-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #000000;
    border-radius: 4px !important;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.offer-code-input:focus {
    outline: none;
    border-color: #7cb342;
}

.offer-code-input::placeholder {
    color: #999;
}

.btn-submit {
    background-color: #3d5a80;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 4px !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2d4560;
}

/* Help Text */
.help-text {
    font-size: 14px;
    color: #666;
}

.help-text p {
    margin: 8px 0;
}

.click-here-link {
    color: #545353;
    text-decoration: underline;
    font-weight: 600;
}

.click-here-link:hover {
    color: #2d4560;
}

.phone-link {
    color: #545353;
    font-weight: 700;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px;
    }
    
    .hero-phone-text {
        margin-bottom: 20px;
    }
    
    .easy-cash-section {
        padding: 40px;
    }

    .easy-cash-box {
        padding: 30px 20px;
    }

    .easy-cash-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .dollar-icon-container {
        margin-top: 30px;
    }

    .dollar-icon {
        width: 120px;
        height: 120px;
    }
    
    .bottom-section {
        padding: 40px;
    }

    .bottom-section .container {
        padding: 0 20px;
    }

    .life-happens-box {
        padding: 0;
        margin-bottom: 40px;
    }

    .view-options-box {
        padding: 0;
        border-left: none;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 18px;
    }
    
    .btn-submit {
        width: 100%;
    }
}