body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

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

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

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

.search-bar {
    margin-top: 10px;
}

.search-bar input {
    padding: 10px;
    width: 200px;
}

.search-bar button {
    padding: 10px;
    background-color: #ffc107;
    border: none;
    color: #343a40;
    cursor: pointer;
}

.hero img {
    width: 100%;
    height: auto;
}

main {
    padding: 20px;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.category {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 10px;
    text-align: center;
    transition: transform 0.2s;
    width: 200px;
}

.category:hover {
    transform: scale(1.05);
}

.category img {
    border-radius: 8px 8px 0 0;
    width: 100%;
}

.category h3 {
    margin: 10px 0;
}

.testimonials, .contact, .newsletter {
    margin: 20px 0;
    text-align: center;
}

.testimonial {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 10px;
    padding: 10px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact form label {
    margin: 10px 0 5px;
}

.contact form input, .contact form textarea {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact form button {
    padding: 10px 20px;
    background-color: #28a745;
    border: none;
    color: white;
    border-radius: 4px;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .newsletter {
    margin-bottom: 20px;
}

footer .newsletter input {
    padding: 10px;
    width: 200px;
    margin-right: 10px;
}

footer .newsletter button {
    padding: 10px;
    background-color: #ffc107;
    border: none;
    color: #343a40;
    cursor: pointer;
}

footer .social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.disclaimer {
    background-color: #333; /* Dark background color */
    color: #fff; /* White text color */
    padding: 15px; /* Increased padding for better spacing */
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
    font-style: italic;
}
