:root{
  --accent:#1aa39a;
  --muted:#f1f7f6;
  --card:#ffffff;
  --text:#08303a;
  --round:14px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
body{
  margin:0;
  /*background:linear-gradient(180deg,#f6fcfb,#f3f8f8);*/
  color:var(--text);
  font-family: 'Montserrat' !important;
}

/* Container with round capsule effect */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: 10px 0;
  border-radius: 18px;
  margin: 12px auto;
  width: 95%;
  max-width: 1280px;
  box-shadow:
      0 2px 8px rgba(0,0,0,0.05),
      0 8px 22px rgba(0,0,0,0.06),
      0 0 18px rgba(33,150,83,0.12);
}

/* Perfect 3-way layout */
.topbar-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding: 18px 24px;
}

/* Left logo */
.top-left{
  justify-self: start;
}
.logo img{
  height: 40px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

/* MENU CENTER */
.top-center{
  display:flex;
  justify-content:center;
  gap: 40px;
}
.top-center a{
  text-decoration:none;
  font-weight:700;
  color:#3b3b3b;
}
.top-center a.active{
  color:#1fa221;
}

/* Right login */
.top-right{
  display:flex;
  justify-self:end;
  align-items:center;
  gap:10px;
}

.login-text{
  text-decoration:none;
  color:#1e325c;
  font-weight:700;
}

.login-circle{
  width:44px;
  height:44px;
  background-image:url('../img/profil.png');
  background-repeat: no-repeat;
  border-radius:50%;
}

/* Hide burger on desktop */
.burger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}
.burger span{
  width:28px;
  height:3px;
  background:#1e325c;
  border-radius:3px;
}


/* MOBILE MENU HIDDEN DEFAULT */
.mobile-menu{
  display:none;
  flex-direction:column;
  background:#ffffff;
  padding:14px 22px;
  border-radius:12px;
  margin-top:6px;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.06),
    0 0 14px rgba(33,150,83,0.12);
}
.mobile-menu a{
  text-decoration:none;
  padding:12px 0;
  font-weight:700;
  color:#1e325c;
  border-bottom:1px solid rgba(0,0,0,0.08);
}
.mobile-menu a:last-child{
  border-bottom:none;
}


/* RESPONSIVE MODE */
@media(max-width:780px){
  .desktop-nav{
    display:none; /* hide desktop menu on mobile */
  }
  .burger{
    display:flex;
    justify-self:end;
  }

  .topbar-inner{
    grid-template-columns: 1fr auto; /* remove center slot */
  }

  .top-center{
    display:none;
  }

  /* Show dropdown when active */
  .mobile-menu.show{
    display:flex;
  }
}
.container-footer{
  width: 100%;
  margin:0 auto;
  padding:50px;
}

.container{
  max-width:1025px;
  margin:0 auto;
  padding:18px
}
.nav{
  display:flex;
  align-items:center;
  gap:12px
}
.logo{
  display:flex;
  align-items:center;
  gap:12px
}
/*.logo img{
  height:34px
}*/
.nav-right{
  margin-left:auto;
  display:flex;
  gap:12px;
  align-items:center
}
.btn{
  background:var(--accent);
  color:#fff;
  padding:8px 14px;
  border-radius:12px;
  border:none;cursor:pointer
}

/* Hero */
.hero{
  padding:28px 0;
  display:flex;
  gap:20px;
  align-items:center
}
.hero-left{
  flex:1
}
.hero h1{
  margin:0;
  font-size:28px
}
.hero p{
  margin:8px 0 0;
  color:#2b5b58
}
.hero img{
  max-width:220px;
  border-radius:10px
}

/* Services grid */
.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px
}
.service{
  /*background:var(--card);*/
  /*padding:16px;*/
  /*border-radius:12px;*/
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:84px;
  /*box-shadow:0 6px 14px rgba(11,35,33,0.03)*/
}
.service .icon{
  width:36px;
  height:36px;
  border-radius:10px;
  background:linear-gradient(180deg,#e6f9f6,#d8f2ef);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:8px
}
.service small{
  color:#3b6a68
}

/* Promo card */
.promo{
  margin-top:18px;
  background:linear-gradient(90deg,#e8fffb,#f7fff8);
  padding:14px;
  border-radius:12px;
  display:flex;
  gap:12px;
  align-items:center
}
.promo img{
  width:84px;
  height:84px;
  border-radius:12px;
  object-fit:cover
}

/* Location cards */
.locations {
  margin-top: 60px;
}

/* Main 2 column layout */
.locations-wrapper {
  display: grid;
  grid-template-columns: 230px 1fr;
  /*gap: 40px;*/
  align-items: start;
}

/* Left title */
.locations-title h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #1e2b3a;
}

/* Cards grid */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.loc {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
}

/* Gradient overlay */
.loc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* Content */
.loc-content {
  position: relative;
  z-index: 2;
}

.loc strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.loc-address {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.loc-phone {
  font-size: 20px;
  display: flex;
  align-items: center;
}

/*footer{
  padding:22px 0;
  text-align:center;
  color:#fff;
  background:linear-gradient(180deg,#0b6260,#0a4a49);
  margin-top:28px
}*/

/* responsive */
@media (max-width:900px){
  .services{grid-template-columns:repeat(2,1fr)}
  .hero{flex-direction:column;align-items:flex-start}
  .loc-grid{grid-template-columns:1fr}
}
@media (max-width:480px){
  .services{grid-template-columns:repeat(2,1fr);gap:8px}
  .container{padding:12px}
  .hero img{max-width:160px}
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* MAIN FOOTER */
.wf-footer {
  background-image:url('../img/FOOTER_web.png');
  background-size: cover;        /* fill area */
  background-position: center;   /* center image */
  background-repeat: no-repeat;  /* no repeat */
  color: #fff;
  padding: 40px 60px;
  width: 100%;
}

/* LAYOUT */
.wf-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LEFT SIDE */
.wf-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wf-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ICONS */
.wf-icons {
  display: flex;
  gap: 15px;
}

.wf-icons a {
  display: inline-flex;
}

.wf-icons img {
  width: 38px !important;
  height: 38px !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.2s ease;
}

.wf-icons img:hover {
  transform: scale(1.1);
}

/* RIGHT SIDE */
.wf-right {
  text-align: right;
  font-size: 16px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wf-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .wf-left {
    align-items: center;
  }

  .wf-right {
    text-align: center;
  }
}

/* ========================= */
/* FEATURED POST */
/* ========================= */
.featured-post{
  background:#eef3f1;
  padding:60px 20px;
}

.featured-container{
  max-width:1050px;
  margin:auto;
}

/* Header */
.featured-header{
  text-align:center;
  margin-bottom:30px;
}

.featured-header h2{
  font-size:42px;
  line-height:1.1;
  color:#1f315e;
  font-weight:800;
  margin:0 0 10px;
}

.featured-header .meta{
  font-size:16px;
  color:#555;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Banner */
.featured-banner{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:35px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.featured-banner img{
  width:100%;
  display:block;
  height:420px;
  object-fit:cover;
}

.overlay-text{
  position:absolute;
  top:50%;
  left:40px;
  transform:translateY(-50%);
  color:#fff;
  font-size:48px;
  font-weight:800;
  line-height:1.15;
  text-shadow:0 3px 10px rgba(0,0,0,0.25);
  max-width:420px;
}

/* Content */
.featured-content{
  background:#fff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 8px 18px rgba(0,0,0,0.04);
}

.featured-content h4{
  font-size:22px;
  margin:0 0 10px;
  color:#111;
}

.featured-content p{
  font-size:16px;
  line-height:1.8;
  color:#333;
  margin-bottom:22px;
}

.source{
  margin-top:25px;
  font-size:15px;
}

.source a{
  color:#0066cc;
  text-decoration:none;
}

.source a:hover{
  text-decoration:underline;
}

/* Mobile */
@media(max-width:768px){

  .featured-header h2{
    font-size:30px;
  }

  .featured-banner img{
    height:320px;
  }

  .overlay-text{
    left:20px;
    font-size:32px;
    max-width:250px;
  }

  .featured-content{
    padding:22px;
  }

  .featured-content h4{
    font-size:18px;
  }

  .featured-content p{
    font-size:15px;
    line-height:1.7;
  }
}

@media(max-width:480px){

  .featured-banner img{
    height:260px;
  }

  .overlay-text{
    font-size:26px;
    max-width:220px;
  }

  .featured-header h2{
    font-size:24px;
  }
}
</style>

<style>
/* ========================= */
/* RELATED ARTICLES */
/* ========================= */
.related-section{
  background:#eef3f1;
  padding:60px 20px;
}

.related-container{
  max-width:1150px;
  margin:auto;
}

.related-title{
  text-align:center;
  font-size:42px;
  color:#1f315e;
  font-weight:800;
  margin-bottom:40px;
}

/* Grid */
.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Card */
.related-card{
  text-decoration:none;
  color:#1f315e;
  display:block;
  transition:0.25s ease;
}

.related-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  border:6px solid #15913a;
  display:block;
}

.related-card h3{
  font-size:30px;
  line-height:1.2;
  margin-top:18px;
  font-weight:800;
  text-transform:uppercase;
}

/* Hover */
.related-card:hover{
  transform:translateY(-6px);
}

.related-card:hover img{
  box-shadow:0 12px 24px rgba(0,0,0,0.12);
}

/* Tablet */
@media(max-width:992px){

  .related-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .related-title{
    font-size:34px;
  }

  .related-card h3{
    font-size:24px;
  }
}

/* Mobile */
@media(max-width:600px){

  .related-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .related-title{
    font-size:28px;
    margin-bottom:28px;
  }

  .related-card img{
    height:210px;
    border-width:5px;
  }

  .related-card h3{
    font-size:20px;
    margin-top:14px;
  }
}