body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #F5F5F5;
}

h1{
    color: #fff;
}
.hero {
    background: linear-gradient(135deg, #003366 0%, #4A90E2 100%);
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    animation: parallax 10s ease-in-out infinite alternate;
}
@keyframes parallax {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
.hero h1 {
    font-size: 3rem;
    z-index: 1;
    position: relative;
}
.hero p {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}
.section {
    padding: 60px 0;
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-primary {
    background-color: #D4AF37;
    color: #333;
    border: none;
}
.btn-primary:hover {
    background-color: #B8860B;
}
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 0;
}

@media(max-width: 480px){
    .headernavigation{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .uk-navbar-right{
        margin-left: 0px;
    }
}