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

body{
  background:#f4f6f8;
  color:#1c2e3e;
}

/* HEADER */

header{
  background:#ffffff;
  padding:18px 0;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.header-inner{
  width:1200px;
  max-width:95%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:48px;
  width:auto;
  display:block;
}

/* NAVIGATION */

.main-nav a{
  margin-left:28px;
  text-decoration:none;
  color:#1c2e3e;
  font-weight:600;
  transition:0.3s;
}

.main-nav a:hover{
  color:#1fa67a;
}

.main-nav a.active{
  color:#1fa67a;
  border-bottom:2px solid #1fa67a;
  padding-bottom:4px;
}

/* HEADER ACTIONS (LANGUAGE + BUTTON) */

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-actions a{
  text-decoration:none;
  font-weight:600;
  color:#1c2e3e;
}

.header-actions a:hover{
  color:#1fa67a;
}

/* BUTTON */

.btn{
  background:#1fa67a;
  color:white;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}

/* HERO */

.hero{
  background:#173a56;
  color:white;
  padding:80px 20px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:"BUSCOOR";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:200px;
  font-weight:900;
  letter-spacing:10px;
  color:white;
  opacity:0.04;
  white-space:nowrap;
  pointer-events:none;
}

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

.hero p{
  font-size:17px;
  opacity:0.9;
  max-width:850px;
  margin:0 auto;
  line-height:1.6;
}

/* CONTENT */

.section{
  padding:70px 20px;
}

.container{
  width:1100px;
  max-width:92%;
  margin:0 auto;
}

.legal-container{
  width:900px;
  max-width:92%;
  margin:0 auto;
  background:#ffffff;
  padding:40px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.legal-container h2{
  font-size:26px;
  margin:30px 0 12px;
  color:#173a56;
}

.legal-container h2:first-child{
  margin-top:0;
}

.legal-container p,
.legal-container li{
  font-size:16px;
  line-height:1.8;
  color:#2d3e50;
}

.legal-container ul{
  margin:10px 0 10px 22px;
}

/* CARDS */

.cards{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  max-width:1200px;
  margin:40px auto 0 auto;
}

.card{
  background:white;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  width:300px;
}

.card h3{
  margin-bottom:10px;
}

/* GRID */

.grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card-grid{
  background:white;
  padding:35px;
  border-radius:8px;
  box-shadow:0 6px 25px rgba(0,0,0,0.06);
  text-align:left;
  transition:0.3s;
}

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

.card-grid h3{
  margin-bottom:15px;
  color:#173a56;
}

.card-grid p{
  font-size:15px;
  line-height:1.6;
  color:#2d3e50;
}

/* CTA */

.cta{
  background:#173a56;
  color:white;
  padding:70px 0;
  text-align:center;
}

.cta h2{
  font-size:32px;
  margin-bottom:20px;
}

.cta p{
  max-width:750px;
  margin:auto;
  margin-bottom:30px;
  line-height:1.6;
}

.cta a{
  background:#1fa67a;
  color:white;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}

/* CONTACT FORM */

.form-title{
  text-align:center;
  margin-bottom:25px;
}

.contact-form label{
  display:block;
  font-weight:600;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin:8px 0 18px;
  border:1px solid #ccc;
  border-radius:5px;
  font-size:14px;
}

.contact-form textarea{
  margin:8px 0 22px;
  resize:vertical;
}

.submit-btn{
  width:100%;
  padding:12px;
  background:#1fa67a;
  color:white;
  border:none;
  border-radius:5px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

/* FOOTER */

footer{
  background:#173a56;
  color:white;
  padding:40px 0;
  text-align:center;
  margin-top:60px;
}

footer a{
  color:#1fa67a;
  text-decoration:none;
  margin:0 10px;
}

/* TOP MOVING MESSAGE */

.top-ticker{
  background:#f0f3f6;
  border-bottom:1px solid #e3e6ea;
  overflow:hidden;
  white-space:nowrap;
}

.ticker-text{
  display:inline-block;
  padding:8px 0;
  font-size:14px;
  font-weight:600;
  color:#173a56;
  animation: tickerMove 25s linear infinite;
}

@keyframes tickerMove{
  0%{ transform:translateX(100%); }
  100%{ transform:translateX(-100%); }
}
