body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light background for contrast */
    margin: 0;
    padding: 20px;
}

.gym-info {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the card */
}

.gym-details {
    background-color: #fff; /* White background for the card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 20px;
    padding: 20px; /* Padding inside the card */
    width: 100%; /* Full width, you can adjust as needed */
    max-width: 400px; /* Maximum width of the card */
}

.gym-details h3 {
    margin: 0 0 10px 0; /* Margin adjustments for title */
    font-size: 1.5em; /* Increase title size */
    color: #333; /* Darker color for the title */
}

.gym-details ul {
    list-style-type: none; /* Remove bullets */
    padding: 0;
    margin: 0; /* Remove default margin */
}

.gym-details li {
    margin-bottom: 10px; /* Space between list items */
    padding: 5px 0; /* Vertical padding */
    border-bottom: 1px solid #eee; /* Light border for separation */
}

.gym-details li:last-child {
    border-bottom: none; /* Remove border for the last item */
}

.gym-details strong {
    color: #007BFF; /* Blue color for labels */
}
