*{
  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;
}

.title p{
  color:#555;
  margin-top:10px;
}

/* CONTACT BOX */
.contact-container{
  max-width:800px;
  margin:auto;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.card{
  background:#f9f9f9;
  padding:20px;
  border-radius:10px;
}

/* FORM */
form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

input, textarea{
  padding:10px;
  border:1px solid #ccc;
  border-radius:5px;
}

button{
  padding:12px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:5px;
}

/* WHATSAPP */
.btn{
  display:inline-block;
  margin-top:10px;
  padding:12px 20px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
}

/* FOOTER */
footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:15px;
  font-size:12px;
  margin-top:40px;
}