
#creditCardProviders {
    margin-top: 10vw;
    padding: 40px;
    background-color: #f7f7f7;
}

#titleforinfo {
    text-align: center;
    font-size: 2.5rem;
    color: #2c456b;
    margin-bottom: 20px;
}

#chooseCreditCardIntro {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    
  }

.provider-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.provider-card {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
}

.provider-logo {
    max-width: 100px;
    margin-bottom: 15px;
}

.provider-card h3 {
    font-size: 1.5rem;
    color: #c98c00;
    margin-bottom: 10px;
}

.provider-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.provider-link {
    text-decoration: none;
    color: #2c456b;
    font-weight: bold;
    border: 1px solid #2c456b;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.provider-link:hover {
    background-color: #2c456b;
    color: #fff;
}
