:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c5348fc */:root {
  --accent:#B18813;
  --text:#222;
  --muted:#555;
  --bg:#f9f9f9;
  --card:#fff;
  --radius:14px;
}

section {
  padding:50px 15px;
}
.container {
  max-width:1100px;
  margin:0 auto;
}
h1,h2,h3 {
  color:var(--text);
  margin-bottom:15px;
}
h1 {font-size:34px;font-weight:700;}
h2 {font-size:26px;font-weight:600;}
p {
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  margin-bottom:15px;
}

.hero-about {
  background:linear-gradient(to right, rgba(177,136,19,0.1), rgba(0,0,0,0.05));
  text-align:center;
  padding:80px 15px;
}
.hero-about h1 {
  font-size:38px;
  color:var(--text);
}
.hero-about p {
  max-width:800px;
  margin:15px auto 0;
}

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.about-grid img {
  width:100%;
  border-radius:var(--radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.cta-about {
  text-align:center;
  background:var(--bg);
  padding:50px 15px;
  border-radius:var(--radius);
}
.btn {
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:14px 32px;
  border-radius:var(--radius);
  margin-top:15px;
  font-weight:600;
  transition:.3s;
}
.btn:hover {
  background:#000;
  color:#fff;
}

@media(max-width:900px){
  .about-grid {
    grid-template-columns:1fr;
  }
}/* End custom CSS */