
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
header {
    background-color: #002855;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
}
.logo {
    height: 50px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
}
.hero {
    background-image: url("assets/background.jpg");
    background-size: cover;
    color: white;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-text {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.button {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
.info {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: #f5f5f5;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 20%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
