body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f5f5f5;
}

h1 {
    color: #2e7d32;
}

button {
    background-color: #2e7d32;
    color: white;

    border: none;

    padding: 15px 25px;

    font-size: 18px;

    border-radius: 8px;

    cursor: pointer;
}
button:hover {
    background-color: #1b5e20;
}
nav {
    background-color: #2e7d32;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    padding: 80px 20px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}
.services {
    padding: 50px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: white;
    width: 600px;
    padding: 50px;

    border-radius: 10px;

    box-shadow: 0px 2px 10px rgba(0,0,0,0.15);
}
.hero img {
    width: 400px;
    border-radius: 15px;
    margin: 20px 0;
}
.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.hero-images img {
    width: 300px;
    height: 250px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}
.booking-form {
    padding: 50px;
}

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

    display: flex;
    flex-direction: column;

    gap: 15px;
}

input,
select,
textarea {
    padding: 12px;

    border: 1px solid #ccc;

    border-radius: 5px;
}
.about {
    padding: 50px;
    max-width: 800px;
    margin: auto;
}
footer {
    background-color: #2e7d32;
    color: white;

    text-align: center;

    padding: 20px;
}
#requestList {
    max-width: 700px;
    margin: 20px auto;
}

.request-card {
    background-color: white;

    padding: 15px;

    margin-bottom: 15px;

    border-radius: 10px;

    box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}
.status-Pending {
    color: orange;
    font-weight: bold;
}

.status-Approved {
    color: green;
    font-weight: bold;
}

.status-Completed {
    color: blue;
    font-weight: bold;
}
.status-Declined {
    color: rgb(255, 0, 0);
    font-weight: bold;
}