body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.6;
}

header {
    background-color: #007BFF;
    color: #fff;
    padding: 15px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header .logo {
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffdd57;
}

.hero {
    background-image: url('https://source.unsplash.com/1600x900/?technology,rehabilitation');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero .container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero button {
    background-color: #ffdd57;
    color: #007BFF;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #e0a800;
}

.projects {
    padding: 50px 0;
    background-color: #f1f1f1;
}

.projects .container {
    text-align: center;
}

.projects h3 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #007BFF;
}

.project-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.project-item {
    background-color: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

.project-item i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #007BFF;
}

footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #ffdd57;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
}

footer a:hover {
    color: #e0a800;
}

.project-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-top: 20px;
}

.project-item a {
    text-decoration: none;
    color: inherit;
}

.project-item a:hover {
    text-decoration: none;
    color: inherit;
}
