* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #ffb347;
  min-height: 100vh;
  height: 100%;
}
.sunset-bg {
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(180deg, #ffb347 0%, #ff8008 60%, #a85b2a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sun {
  position: absolute;
  top: 70px;
  right: 20vw;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #fffde4 50%, #ffd700 80%, #ff8008 100%);
  border-radius: 50%;
  opacity: 0.85;
  z-index: 1;
  filter: blur(2px);
}
.content-wrapper {
  z-index: 2;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 60px 30px 40px 60px;
}
.main-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 3px 16px #b35e1e;
}
.subtitle {
  font-size: 1.5rem;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 2px 8px #b35e1e;
}
.description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.6;
  max-width: 500px;
}
.inquire-btn {
  display: inline-block;
  background: #1c7ed6;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 28px;
  padding: 14px 38px;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(28,126,214,0.18);
  margin-bottom: 18px;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.inquire-btn:hover {
  background: #1864ab;
}
.email {
  color: #fff;
  font-size: 1rem;
  margin-top: 5px;
  opacity: 0.92;
  letter-spacing: 0.5px;
}
.copper-bars {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding: 0 40px 38px 0;
}
.bar {
  background: linear-gradient(90deg, #a85b2a 0%, #e07b39 60%, #e5a96e 100%);
  border-radius: 10px 10px 18px 18px;
  box-shadow: 0 3px 16px #a85b2a66;
}
.bar1 {
  width: 320px;
  height: 40px;
}
.bar2 {
  width: 260px;
  height: 36px;
  margin-right: 24px;
}
.bar3 {
  width: 190px;
  height: 28px;
  margin-right: 48px;
}

.about, .vision {
  padding: 60px 20px;
  text-align: center;
}
.about h2, .vision h2 {
  font-size: 2rem;
  margin-bottom: 1em;
}
.disclaimer {
  font-size: 0.92em;
  color: #f3e7d4;
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.6;
  background: none;
  padding: 0;
}
.disclaimer strong {
  color: #ffe5b4;
  font-size: 1em;
  display: block;
  margin-bottom: 2px;
}
.disclaimer ul {
  margin: 0 0 0 1.2em;
  padding: 0;
}
.disclaimer li {
  margin-bottom: 2px;
  padding-left: 0.2em;
}
.container {
  max-width: 1000px;
  margin: auto;
}
.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
}