/* =============================


header {
background: #0a4d68;
color: white;
padding: 15px;
}


nav a {
color: white;
margin: 0 10px;
text-decoration: none;
}


.hero {
padding: 60px 20px;
background: #dbeef5;
text-align: center;
}


.btn {
background: #0a4d68;
color: white;
padding: 10px 20px;
text-decoration: none;
}


.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
gap: 20px;
padding: 40px;
}


.features div,.card {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
}


.content {
padding: 40px;
}


footer {
background: #0a4d68;
color: white;
text-align: center;
padding: 15px;
margin-top: 40px;
}


/* Slider */
.slider {
position: relative;
height: 300px;
background: #000;
color: white;
overflow: hidden;
}


.slide {
position: absolute;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
opacity: 0;
transition: 1s;
}


.slide.active {
opacity: 1;
}