
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f5f5f5;
  color:#222;
}

.topbar{
  background:#07152b;
  color:white;
  padding:20px 60px;
  display:flex;
  align-items:center;
  gap:20px;
}

.logo{
  font-size:48px;
  font-weight:bold;
  color:#d4a64d;
}

.topbar h1{
  margin:0;
}

.topbar p{
  margin:4px 0 0;
  color:#d4a64d;
}

.hero{
  background:url('foto1.jpeg') center/cover no-repeat;
  height:80vh;
  position:relative;
}

.overlay{
  background:rgba(0,0,0,0.55);
  height:100%;
  display:flex;
  align-items:center;
}

.hero-text{
  max-width:600px;
  padding:60px;
  color:white;
}

.hero-text h2{
  font-size:58px;
  margin-bottom:20px;
}

.hero-text p{
  font-size:20px;
  line-height:1.6;
}

.btn{
  display:inline-block;
  margin-top:20px;
  background:#d4a64d;
  color:#07152b;
  padding:14px 28px;
  text-decoration:none;
  border-radius:8px;
  font-weight:bold;
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:80px 60px;
  background:white;
}

.about img{
  width:100%;
  border-radius:20px;
}

.about .text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about h3{
  font-size:40px;
  color:#07152b;
}

.about p{
  line-height:1.8;
  font-size:18px;
}

.services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  padding:60px;
  background:#07152b;
}

.card{
  background:white;
  padding:30px;
  border-radius:16px;
}

.card h4{
  color:#07152b;
}

.profile{
  padding:60px;
  background:#fff;
}

.profile img{
  width:100%;
  border-radius:20px;
}

.contacts{
  padding:80px 60px;
  background:#f1f1f1;
}

.contacts h3{
  font-size:40px;
  color:#07152b;
}

footer{
  background:#07152b;
  color:white;
  text-align:center;
  padding:25px;
}

@media(max-width:900px){
  .about, .services{
    grid-template-columns:1fr;
  }

  .hero-text h2{
    font-size:42px;
  }
}
