.gdc-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
}

.gdc-card {
    min-width: 250px;
    border-radius: 20px;
    background: #f5f5f5;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

/* Gradient Top */
.gdc-top {
    height: 120px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(180deg, #EE7639, #BC3F37);
}

/* Logo */
.gdc-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    margin: -40px auto 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.gdc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title */
.gdc-title {
    font-size: 18px;
    font-weight: bold;
}

/* Button */
.gdc-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    font-size: 14px;
}