body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

section#home {
    background: url('https://source.unsplash.com/random/1024x768?gym') no-repeat center center/cover;
    color: #fff;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section h2,
section h1 {
    margin: 0 0 20px 0;
}

.service-item,
.membership-plan {
    margin-bottom: 20px;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

thead {
    background-color: #333;
    color: #fff;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #444;
}

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fff;
}
nav ul li a:hover {
    background-color: #d3d3d3;
    /* Light gray color */
    color: #000;
    /* Optional: Change text color on hover */
    border-radius: 5px;
    /* Optional: Add rounded corners to the hover effect */
    padding: 5px;
    /* Optional: Add some padding to make the hover effect more noticeable */
}
.heading1{
    background-color: black;
}