
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
}

#section-home {
    background-image: url(../assets/img/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 50px 0;
    color: #fff;
}

#section-home h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s;
}

.research-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.research-card:hover {
    transform: translateY(-10px);
}

.research-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.research-abstract {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
}

.research-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0066cc;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.research-link:hover {
    background-color: #005bb5;
}

footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #06c;
}
