
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}
.logo {
  width: 140px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.hero {
  background: url('hero-bg.jpg') center/cover no-repeat;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}
.button {
  background: #e67e22;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  margin-right: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  border-radius: 5px;
}
.button.secondary {
  background: white;
  color: #1e1e1e;
  border: 2px solid #1e1e1e;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.process-visual .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  text-align: center;
}
.process-visual .steps div {
  flex: 1 1 180px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.process-visual .steps h3 {
  color: #e67e22;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.video-grid iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}
form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
input, textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.form-row input {
  flex: 1;
}
button {
  padding: 14px;
  background: #1e1e1e;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
}
footer {
  background: #1e1e1e;
  color: white;
  text-align: center;
  padding: 30px;
}
.footer-link {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.footer-logo {
  width: 100px;
  margin-top: 10px;
}
