:root{
  --uv-topbar: #1F6B75;
  --uv-footer: #0D2C34;
  --uv-title: #003049;
  --uv-bg: #F5F5F5;
  --uv-white: #ffffff;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body.landing{
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--uv-bg);
  color: var(--uv-title);
  display:flex;
  flex-direction:column;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.topbar{
  background: var(--uv-topbar);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  border-bottom: 3px solid rgba(0,0,0,0.06);
}

.logo{
  height:65px;
  width:auto;
  max-width:260px;
  display:block;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.main h1 {
  color: var(--uv-title);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.1;
}

.lead {
  max-width: 820px;
  font-size: 1.15rem;
  color: #27424f;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: justify;
}

.meta {
  margin-top: 10px;
  font-size: 1.15rem;
}

.footer {
  width: 100%;
  padding: 20px 0;
  background-color: var(--uv-footer);
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-left p {
  margin: 0;
}

.footer-left .dtic {
  font-size: 1rem;
  font-weight: 600;
}

.footer-left .uv {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-right {
  display: flex;
  align-items: center; 
  gap: 8px;
  font-size: 0.9rem; 
}

.icon-location {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width:900px){
  .main h1{font-size:1.8rem}
  .logo{height:40px}
  .lead{font-size:1rem;padding:0 10px}
}
@media (max-width:480px){
  .topbar{padding:10px}
  .main{padding:8vh 12px}
  .logo{height:34px}
  .main h1{font-size:1.5rem}
  .lead{font-size:0.98rem}
  .footer-inner{font-size:0.9rem}
}
