*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#f5f5f5;
  color:#333;
  line-height:1.6;
}

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

header{
  background:#0B1F3A;
  color:#fff;
  text-align:center;
  padding:20px;
}

.logo{
  width:140px;
  display:block;
  margin:0 auto 15px;
}

header h1{
  color:#D4AF37;
  font-size:30px;
}

header p{
  margin:10px 0;
}

nav{
  margin-top:15px;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin:0 12px;
  font-weight:bold;
}

nav a:hover{
  color:#D4AF37;
}

.hero{
  text-align:center;
  padding:40px 20px;
}

.shop-image{
  width:100%;
  max-width:400px;
  border-radius:15px;
  margin:20px auto;
  display:block;
}

.hero h2{
  color:#0B1F3A;
  margin-bottom:10px;
}

.btn{
  display:inline-block;
  background:#D4AF37;
  color:#000;
  padding:12px 22px;
  margin:10px;
  text-decoration:none;
  border-radius:8px;
  font-weight:bold;
}

section{
  padding:40px 20px;
  text-align:center;
}

section h2{
  color:#0B1F3A;
  margin-bottom:20px;
}

.service{
  background:#fff;
  margin:10px auto;
  max-width:350px;
  padding:15px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}

footer{
  background:#0B1F3A;
  color:#fff;
  text-align:center;
  padding:20px;
  margin-top:20px;
}

@media(max-width:768px){

nav a{
  display:block;
  margin:10px 0;
}

header h1{
  font-size:22px;
}

.logo{
  width:110px;
}

.btn{
  display:block;
  max-width:220px;
  margin:10px auto;
}

}.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
    z-index:999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}.call-float{
    position:fixed;
    bottom:90px;
    right:20px;
    width:60px;
    height:60px;
    background:#0B1F3A;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
    z-index:999;
}

.call-float:hover{
    transform:scale(1.1);
} form{
    max-width:500px;
    margin:20px auto;
}

form input,
form textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

form textarea{
    resize:vertical;
}