body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #faf8f5;
    color: #333;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #4a3f35;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    padding: 5px;
}

.logo span {
    color: #fdf5e6;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fdf5e6;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

.services {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #d9c3a3, #fdf5e6);
    color: #4a3f35;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Service Cards Layout */
.service-cards {
    
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adds space between the cards */
}

.card {
    
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Adds a subtle hover effect */
}

/* Image styling for the first card */
.card img {
    width: 100%; /* Make image responsive to card width */
    height: auto;
    max-height: 150px; /* Restricts image height */
    object-fit: contain; /* Ensures the image doesn't stretch */
    margin-bottom: 15px;
}

/* Styling for the text inside the card */
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #4a3f35;
    color: #fdf5e6;
}