
/* Set a background color and font for the entire page */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #ddeeff;
    color: #000;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-size: 2.5rem;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
    text-align: center;
    background-color: #333;
    padding: 1rem 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Style sections */
section {
    padding: 2rem;
    text-align: center;
}

/* Style the administrator panel */
#administrator {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    margin: 2rem 0;
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

/* Add hover effect to navigation links */
nav a:hover {
    color: #007acc;
}

===========================================



/* Center section headers */
section h2 {
    text-align: center;
}


/* Section styles */
section {
    padding: 2rem;
}

/* About Us section */
#about {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem;
    border-radius: 5px;
}

#about h2 {
    font-size: 1.5rem;
    color: #333;
}

/* Service List styles */
.service-list {
    margin-top:20px;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.service-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
}

.service-icon i {
    font-size: 24px; /* Adjust the font size as needed */
    margin-bottom: 10px;
}


/* Style the administrator panel */
#administrator {
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem 30rem;
    margin: 2rem 0;
}
#administrator img {
}

