*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  background-image: url('lebelo-creations/lebelo-logo.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.7); /* light overlay */
  z-index:-1;
}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#000;
}

.logo img{
  height:40px;
}

nav a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
}

/* TITLE */
.title{
  text-align:center;
  padding:40px 20px;
}

/* SERVICES */
.services{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.card{
  display:flex;
  align-items:center;
  gap:15px;
  padding:15px;
  background:#f9f9f9;
  border-radius:10px;
}

/* SMALL IMAGE ICON */
.card img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:10px;
  padding:5px;
  background:#fff;
}

.card h3{
  margin-bottom:5px;
}

/* FOOTER */
footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:15px;
  font-size:12px;
  margin-top:40px;
}

/* DESKTOP */
@media(min-width:768px){
  .services{
    max-width:800px;
    margin:auto;
  }
}