/* Header styles */
.header {
    background: linear-gradient(to right, #0052D4, #4364F7, #6FB1FC);
    color: white;
    padding: 40px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 15px;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
}

.welcome-text {
    margin-top: 20px;
}

.welcome-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.welcome-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content section */
.content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Service cards */
.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eaeaea;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credit-icon {
    color: #0052D4;
}

.insurance-icon {
    color: #00B4DB;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    color: white;
}

.credit-btn {
    background: linear-gradient(to right, #0052D4, #4364F7);
    color: white;
}

.credit-btn:hover {
    background: linear-gradient(to right, #0040a8, #3650d5);
    box-shadow: 0 5px 15px rgba(0, 82, 212, 0.4);
}

.insurance-btn {
    background: linear-gradient(to right, #00B4DB, #0083B0);
    color: white;
}

.insurance-btn:hover {
    background: linear-gradient(to right, #0099bc, #006d8f);
    box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
}

/* Features section */
.features {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.feature-icon {
    font-size: 2.5rem;
    color: #4364F7;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    margin-top: 50px;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    padding: 20px;
    border-top: 1px solid #eaeaea;
    width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .welcome-text h1 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1.1rem;
    }
    
    .services {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 350px;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}
