
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f7fa;
    color:#222;
    line-height:1.6;
}

header{
    background:linear-gradient(135deg,#0f2b3d,#1a4d6b);
    color:white;
    text-align:center;
    padding:40px 20px;
}

.logo{
    width:240px;
    max-width:100%;
    margin-bottom:20px;
}

nav{
    margin-bottom:30px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 12px;
    font-weight:bold;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    max-width:800px;
    margin:auto;
    opacity:0.95;
}

.search-section{
    text-align:center;
    padding:30px 20px;
}

.search-section input{
    width:100%;
    max-width:500px;
    padding:15px;
    border-radius:50px;
    border:2px solid #d0d7de;
    font-size:16px;
}

.container{
    max-width:1300px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.content{
    padding:20px;
}

.badge{
    display:inline-block;
    background:#1a4d6b;
    color:white;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    margin-bottom:10px;
}

.trust{
    max-width:1000px;
    margin:40px auto;
    background:white;
    padding:35px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.trust h2{
    margin-bottom:20px;
}

.trust ul{
    padding-left:20px;
}

footer{
    background:#0f2b3d;
    color:white;
    text-align:center;
    padding:30px 20px;
    margin-top:50px;
}

.footer-links{
    margin-bottom:15px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 10px;
}

.page{
    max-width:900px;
    margin:50px auto;
    background:white;
    padding:40px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

@media(max-width:768px){
    .hero h1{
        font-size:30px;
    }
}
