*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "segoe UI", sans-serif;
}
body{
    line-height: 1.6;
    color:#152649;
}
header{
    background: #CDDA32;
    color:#152649;
    display:flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top:0;
    z-index: 1000;
}
.logo{
    font-size: 1.5rem;
    font-weight: bold;
} 
nav li{
    list-style: none;
    display: flex;
}
nav a{
    color:#152649;
    text-decoration: none;
}
nav a:hover{
    text-decoration: underline;
}
.hero{
    background: linear-gradient(to right, #CDDA32, #133c8898);
    color:#fff;
    text-align: center;
    padding: 5rem 2rem;
} 
.hero h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.btn{
    background: #ffb703;
    color:#000;
    padding:0.7rem 1.5rem;
    border:none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    display:inline-block;
}
.btn:hover{
    background: #CDDA32;
    color:#152649;
}
.services{
    padding:3rem 2rem;
    text-align: center;
}
.services h2{
    margin-bottom: 2rem;
}
.cards{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap:1.5rem;
}
.card {
    background: #CDDA32;
    padding:1.3rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin:10px;
    color:#152649;
}
.info{
   background: #CDDA32;
    padding:2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top:2rem;
    margin-left:35rem;
    color:#152649;
    width: 35vw;
    height:40vh;
}
.card h3{
    margin-bottom: 0.5rem;
}
.info h3{
    padding-bottom:0.5rem;
}
.about{
    background: #ebe9ff;
    border-radius:5px;
    padding: 3rem 2rem;
    text-align: center;
    color:#152649;
    font-size: large;
}
.contact{
    padding: 3rem 2rem;
    text-align: center;
    color:#152649;
}
footer{
    background: #CDDA32;
    color:#152649;
    text-align: center;
    padding: 1rem;
}








