#addressList {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 20px;
}

.store-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.address-card {
    background-color: #1e1e1e;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.address-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.address-card p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.address-card a {
    text-decoration: none;
    color: #ffd700;
    font-weight: bold;
    align-self: flex-start;
}

.address-card a:hover {
    text-decoration: underline;
}

.group-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #ffd700;
    padding-bottom: 4px;
}