
:root{
  --brand-blue:#153574;
  --brand-orange:#e85a1a;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#ffffff;
  --section:#f6f8fb;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg);}

/* Header */
.header{position:sticky;top:0;background:#ffffff;border-bottom:1px solid #e5e7eb;z-index:40}
.container{max-width:1120px;margin:0 auto;padding:0 16px}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:36px;width:auto;display:block}
.brand .wordmark{font-weight:700;letter-spacing:.02em;color:var(--brand-blue);}
.nav-links{display:flex;align-items:center;gap:20px;font-size:15px}
.nav-links a{text-decoration:none;color:#1f2937;font-weight:500}
.nav-links a:hover{color:var(--brand-blue)}
.lang-switch{padding:6px 10px;border-radius:999px;border:1px solid #e5e7eb;font-size:13px}
.menu-btn{display:none;border-radius:10px;border:1px solid #e5e7eb;background:#fff;padding:6px 10px;font-size:14px}
#mobile-nav{display:none;background:#ffffff;border-bottom:1px solid #e5e7eb}
#mobile-nav a{display:block;padding:12px 16px;border-top:1px solid #f1f5f9;color:#111827;text-decoration:none;font-size:15px}

@media(max-width:880px){
  .nav-links{display:none}
  .menu-btn{display:inline-block}
}

/* Hero */
.hero{min-height:360px;display:flex;align-items:center;background:#f3f6fb center/cover no-repeat;}
.hero-overlay{background:rgba(255,255,255,0.86);backdrop-filter:saturate(130%) blur(2px);padding:28px 24px;border-radius:18px;max-width:640px;margin:40px 0;}
.hero h1{margin:0 0 8px;font-size:34px;color:var(--brand-blue);line-height:1.15}
.hero p{margin:0;color:#334155;font-size:17px}

@media(max-width:880px){
  .hero{min-height:300px}
  .hero-overlay{padding:22px 18px;margin:24px 0}
  .hero h1{font-size:26px}
}

/* Sections */
.section{padding:52px 0;background:#ffffff}
.section.alt{background:var(--section)}
.section h2{margin:0 0 10px;color:var(--brand-blue);font-size:24px}
.section p{margin:4px 0 0;color:#334155;font-size:15px;max-width:760px}
.badge{display:inline-flex;align-items:center;gap:8px;padding:4px 10px;border-radius:999px;background:#e5edff;color:#1d4ed8;font-size:12px;margin-bottom:10px}

.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:20px}
.card{background:#ffffff;border-radius:16px;border:1px solid #e5e7eb;padding:18px 18px 16px;box-shadow:0 8px 18px rgba(15,23,42,0.04)}
.card h3{margin:0 0 6px;font-size:17px;color:var(--brand-blue)}
.card p{margin:0;color:#4b5563;font-size:14px;line-height:1.5}

@media(max-width:880px){
  .grid-3{grid-template-columns:1fr}
}

/* Flags / two-column blocks */
.two-col{display:grid;grid-template-columns:3fr 2fr;gap:28px;margin-top:24px;align-items:flex-start}
.two-col img{max-width:100%;border-radius:16px;border:1px solid #e5e7eb}
@media(max-width:880px){
  .two-col{grid-template-columns:1fr}
}

/* Contact */
.contact-box{margin-top:20px;padding:20px;border-radius:16px;border:1px solid #e5e7eb;background:#ffffff;max-width:520px}
.contact-row{margin:4px 0;color:#1f2937;font-size:15px}
.btn-primary{display:inline-flex;align-items:center;justify-content:center;padding:10px 22px;border-radius:999px;border:none;background:var(--brand-orange);color:#ffffff;font-weight:600;font-size:15px;margin-top:16px;text-decoration:none}

.contact-row a {
    color: #334155;
    text-decoration: none;
}

.btn-secondary {
    color: #334155 !important;
}
/* Footer */
.footer{background:#0b1226;color:#e5e7eb;padding:24px 0;margin-top:40px;font-size:13px}
.footer a{color:#e5e7eb;text-decoration:none}
@media screen and (max-width: 880px) {
  .hero {
    /* "contain" shows the FULL width of the image */
    background-size: contain !important;
    background-position: top center !important;
    
    /* This makes the banner height match the photo's shape on mobile */
    min-height: 200px !important; 
    height: auto !important;
    
    /* Pushes the text box down so it doesn't cover the photo */
    display: block !important; 
    padding-top: 50% !important; 
  }

  .hero-overlay {
    margin: 0 auto !important;
    width: 95% !important;
    position: relative !important;
    top: -20px; /* Adjusts the overlap of the white box */
  }
}
