/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Logo styling */
.logo {
    display: flex; /* Flexbox to align image and text */
    align-items: center; /* Vertically center the image and text */
    justify-content: center; /* Horizontally center the image and text */
    height: 100px; /* Adjust height based on your preference */
    text-align: center;
}

.logo img {
    height: 100%; /* Image will fit the full height of the logo area */
    width: auto; /* Maintain the aspect ratio of the image */
    margin-right: 10px; /* Add some space between the image and the text */
}

.logo h1 {
    color: white;
    font-size: 2rem;
    margin: 0; /* Remove default margin from h1 */
}



.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Navigation Bar */
nav {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #f0f0f0;
}

/* Main Section */
#home {
    background: #f4f4f4;
    padding: 2rem 0;
    text-align: center;
}

#home h2 {
    color: #333;
}

#home button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

#home button:hover {
    background-color: #555;
}

/* About, Services, and Contact Sections */
section {
    padding: 2rem 0;
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}
