/* Start custom CSS for html, class: .elementor-element-00ff9a3 */.car-financing {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.cf-header {
    text-align: center;
    margin-bottom: 30px;
}
.cf-header h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}
.cf-header p {
    color: #666;
    font-size: 16px;
}

.cf-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}
.cf-benefit-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.cf-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.cf-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}
.cf-feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.cf-feature-card h3 {
    margin-top: 0;
    color: #e74c3c;
}
.cf-feature-card h3 span {
    margin-right: 10px;
}
.cf-feature-card ul {
    padding-left: 20px;
}
.cf-feature-card li {
    margin-bottom: 8px;
}

.cf-vehicle-types {
    margin-bottom: 25px;
    text-align: center;
}
.cf-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}
.cf-types span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.cf-process {
    margin-bottom: 30px;
}
.cf-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.cf-step {
    flex: 1;
    min-width: 150px;
    background: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.cf-step span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cf-cta {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.cf-contact-form {
    flex: 2;
    min-width: 300px;
}
.cf-contact-options {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cf-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white !important; /* Ensures text color stays white */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    width: 100%;
    max-width: 250px;
    transition: background-color 0.3s;
}
.cf-whatsapp:hover {
    background-color: #128C7E;
    color: white !important; /* Maintains white text on hover */
}

@media (max-width: 768px) {
    .cf-benefits, .cf-steps, .cf-cta {
        flex-direction: column;
    }
    .cf-benefit-card, .cf-step, .cf-contact-form, .cf-whatsapp {
        width: 100%;
        max-width: 100%;
    }
    .cf-types {
        flex-direction: column;
        align-items: center;
    }
    .cf-types span {
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */