
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#f6f8fb;
    color:#222;
    font-size:14px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ---------------- Header ---------------- */

header{
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:100;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#00a86b;
}

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

nav a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.button{
    background:#00a86b;
    color:white;
    padding:10px 20px;
    border-radius:8px;
}

.breadcrumb{
    margin-top:12px;
    font-size:13px;
    color:#666;
}

.breadcrumb a{
    color:#666;
    text-decoration:none;
}

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

/* ---------------- Hero ---------------- */

.hero{
    padding:10px 0;
    text-align:left;
}

.hero h1{
    font-size:36px;
    margin-bottom:20px;
}

.hero p{
    color:#666;
    font-size:18px;
    margin-bottom:20px;
}

/* ---------------- Section ---------------- */

section{
    margin:30px 0;
}

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

/* ---------------- Grid ---------------- */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.25s;
}

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

.card-image{
    height:130px;
    background:linear-gradient(135deg,#00a86b,#36d399);
}

.card-content{
    padding:14px;
}

.card h3{
    font-size:16px;
    margin-bottom:8px;
}

.card p{
    font-size:13px;
}

.badge{
    display:inline-block;
    background:#e7fff4;
    color:#00a86b;
    padding:4px 10px;
    border-radius:30px;
    font-size:12px;
    margin-top:12px;
}

/* Categories */

.category{
    text-align:left;
    padding:40px 20px;
}

.category h3{
    margin-top:15px;
}


 footer{
    background:#1b1f24;
    color:#ccc;
    margin-top:80px;
    padding:50px 0;
    text-align:left;
}

footer h3{
    color:white;
    margin-bottom:15px;
} 

/* Footer */
.main-footer {

    /* background: var(--surface-dark);
    border-top: 1px solid var(--glass-border); */
    padding: 0rem 0 2rem;
    margin-top: 8rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.7;
  padding-top: 0.5%;
  position: absolute;
  left: 0;
  /* bottom: 1.4%; */
  width: 100%;
  font-size: 0.75em;
  text-align: center;
 
}

#id_version{
  position: absolute;
  font-family: Verdana;
  bottom: 0.5%;
 
  right: 5%;
}

@media(max-width:768px){

.hero h1{
    font-size:30px;
}

nav ul{
    display:none;
}
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
}