/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 65%;
}

.logo img {
    width: 50%;
    height: auto;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

/* Add the following styles for the navigation links */
.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    position: relative; /* Required for the underline effect */
}

.nav-menu a::after {
    content: ''; /* Create the underline using pseudo-element */
    display: block;
    width: 0;
    height: 2px;
    background-color: #f2f2f2; /* Light grey color */
    position: absolute;
    bottom: -2px; /* Position the underline below the text */
    left: 0;
    transition: width 0.3s ease; /* Add transition effect */
}

.nav-menu a:hover::after {
    width: 100%; /* Expand the underline to full width on hover */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    color: #007bff;
}

p {
    line-height: 1.6;
}

.features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.admin-panel,
.mobile-access {
    font-weight: bold;
}

.contact-info {
    margin-top: 2rem;
}

footer {
    background-color: #007bff;
    color: #fff;
    padding: 1rem;
    text-align: center;
}
