body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    text-align: center;
    color: #333;
}

nav {
    display: flex;
    align-items: center;
    background-color: #fdfbfb;
    padding: 10px;
}

nav .logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    /*margin-left: auto;*/
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: rgb(8, 8, 8);
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.img {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.title {
    text-align: center;
    padding: 40px;
    background-color: #ecf0f1;
}

.title h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2980b9;
}

.title p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

header h1 {
    font-size: 32px;
    margin: 40px 0;
    color: #3498db;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

.assist {
    padding: 40px 20px;
    background-color: #e74c3c;
    color: white;
    text-align: center;
}

.assist h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.assist p {
    font-size: 18px;
    line-height: 1.8;
}

.three {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #ecf0f1;
}

.three div {
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.three h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.three p {
    font-size: 16px;
    color: #7f8c8d;
}

footer {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    padding: 40px; 
    background-color: #f8f9fa; 
    border-top: 2px solid #ddd; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer h4 {
    margin-bottom: 15px; 
    font-size: 1.5em; 
    color: #007bff;
    text-align: center;
}

footer p {
    font-size: 0.9em; 
    line-height: 1.6; 
    color: #555;
}

footer div {
    flex: 1; min-width: 250px; margin-right: 20px;
}

footer ul {
    list-style-type: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 15px;
}

footer li {
    flex: 1 0 150px; text-align: left;
}

footer a:hover {
    background-color: #e0e0e0; /* Light grey background */
    color: #0056b3; /* Darker text color on hover */
    border-radius: 5px; /* Rounded corners */
}

