body {
    background-color: #f9f9f9; /* Light background */
    color: #333; /* Dark text for contrast */
    font-family: 'Arial', sans-serif;
}

header {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
    background: #ffffff; /* White background for header */
    color: #333; /* Dark text */
    padding: 50px; /* Adjust padding */
    text-align: left; /* Align text to the left */
    border-bottom: 4px solid #4caf50; /* Green border for definition */
}

.logo {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Set height equal to width for a circle */
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Ensure the image covers the circle */
    margin-right: 20px; /* Add some space to the right of the logo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

.service-item {
    background-color: #ffffff; /* White background */
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 15px 0;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #4caf50; /* Green footer color */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
}

.social-icons i {
    margin: 0 10px;
    color: white;
}

.btn-primary {
    background-color: #4caf50; /* Primary button color */
    border: none; /* No border */
}

.btn-primary:hover {
    background-color: #45a049; /* Darker shade on hover */
}
.btn-spacing {
    margin-right: 15px; /* Adjust the value as needed */
}

/* Additional styles for headings */
h1, h2 {
    color: #2e7d32; /* Darker green for headings */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo {
        width: 80px; /* Smaller logo on mobile */
        height: 80px; /* Adjust height for mobile */
    }

    header {
        padding: 30px; /* Reduced header padding on mobile */
    }

    .service-item {
        padding: 15px; /* Less padding for mobile */
    }
}
