/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f5f5;
color:#333;
line-height:1.6;
}


/* =========================
   CONTAINER
========================= */

.container{
max-width:1200px;
margin:auto;
padding:20px;
width:100%;
}


/* =========================
   HEADER
========================= */

.header{
background:#fff;
border-bottom:1px solid #ddd;
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.brand-left{display:flex;align-items:center;gap:12px}
.logo-pill{display:inline-flex;align-items:center;justify-content:center;border-radius:6px;padding:8px 12px;background:#fff;border:2px solid #e6e6e6;box-shadow:0 2px 0 rgba(0,0,0,0.02)}
.logo-pill img{height:34px;object-fit:contain}




/* =========================
   NAVIGATION
========================= */

nav ul{
display:flex;
gap:30px;
list-style:none;
align-items:center;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#1f6fe5;
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
display:none;
font-size:26px;
background:none;
border:none;
cursor:pointer;
}


/* =========================
   HERO SECTION
========================= */

.hero{
background:#e9edf6;
padding:50px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.hero-card{
display:flex;
align-items:center;
justify-content:space-between;
padding:30px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.yellow{
background:#e9d27a;
}

.blue{
background:#254a9b;
}
.hero-text{
max-width:70%;
}

.hero-text h2{
font-size:24px;
margin-bottom:10px;
}

.hero-text p{
margin-bottom:15px;
}

.hero-icon img{
width:80px;
}


/* =========================
   BUTTON
========================= */

.btn{
background:#1f6fe5;
color:white;
border:none;
padding:10px 20px;
border-radius:6px;
cursor:pointer;
font-weight:500;
transition:0.3s;
}

.btn:hover{
background:#1454b7;
}

.btn.light{
background:white;
color:#333;
}

.btn.light:hover{
background:#f1f1f1;
}


/* =========================
   SERVICES SECTION
========================= */

.services{
padding:70px 0;
background:#f3f4f8;
}

.section-title{
text-align:center;
margin-bottom:50px;
font-size:28px;
font-weight:600;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
padding:35px 25px;
text-align:center;
border-radius:12px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
min-height:260px;
transition:0.3s;
}

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

.blue{
background:#3d5296;
color:white;
}


/* =========================
   ICON CIRCLE
========================= */

.icon-circle{
width:90px;
height:90px;
border-radius:50%;
background:white;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:15px;
}

.icon-circle img{
width:45px;
}

.service-card h3{
font-size:20px;
}

.service-card p{
font-size:14px;
margin-bottom:15px;
}


/* =========================
   DISCLAIMER
========================= */

.disclaimer{
background:#fff8e5;
padding:25px;
text-align:center;
font-size:14px;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}


/* =========================
   FOOTER
========================= */

.footer{
background:#2e3d73;
color:white;
padding:40px 0;
margin-top:40px;
}

.footer-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
margin-bottom:15px;
text-align:center;
}

.footer a{
color:white;
text-decoration:none;
font-size:14px;
}

.footer a:hover{
text-decoration:underline;
}

.copyright{
text-align:center;
font-size:13px;
opacity:0.8;
}


/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.hero-card{
flex-direction:column;
text-align:center;
gap:15px;
}

.hero-text{
max-width:100%;
}

.services-grid{
grid-template-columns:1fr 1fr;
}

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:600px){

.container{
padding:15px;
}

.nav{
flex-direction:row;
justify-content:space-between;
}

.menu-toggle{
display:block;
}

nav{
position:absolute;
top:65px;
left:0;
width:100%;
background:#fff;
border-top:1px solid #eee;
display:none;
}

nav.active{
display:block;
}

nav ul{
flex-direction:column;
align-items:center;
gap:15px;
padding:20px 0;
}

.hero{
padding:35px 0;
}

.hero-card{
padding:20px;
}

.hero-icon img{
width:60px;
}

.services-grid{
grid-template-columns:1fr;
}

.section-title{
font-size:24px;
}

.service-card{
padding:30px 20px;
}

}


.notice-bar {
  width: 100%;
  background-color: #f5f7fa;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.notice-bar marquee {
  padding: 10px 0;
}

.notice-bar p {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
  white-space: nowrap;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .notice-bar p {
    font-size: 13px;
  }
}
