
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #c6f07e, #a2e05e);
  color: #1d1d1d;
  font-size: 1.2rem; /* Slight boost over default */
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.8);
}
.logo-area {
  display: flex;
  align-items: center;
}
.logo-area img {
  height: 80px; /* Scaled down from 75px */
  margin-right: 14px;
}
.brand-name {
  font-size: 2.2rem; /* Reduced from 2.7rem */
  font-weight: bold;
  color: #2e7d32;
}
.action-buttons a,
.action-buttons button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 18px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.1rem;
}
#contractBox {
  display: none;
  padding: 15px 30px;
  background: rgba(0,0,0,0.05);
  font-weight: bold;
  font-size: 1.2rem;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper .headline {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 2rem; /* Reduced from 2.4rem */
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  transform: translateY(-50%);
}
main {
  padding: 50px 40px;
}
section {
  margin-bottom: 60px;
}
h2 {
  color: #1b5e20;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
footer {
  text-align: center;
  padding: 25px;
  background: #2e7d32;
  color: white;
  font-size: 1.2rem;
}

section {
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.5);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.columns > div {
  flex: 1;
  min-width: 280px;
}
.action-buttons a,
.action-buttons button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.action-buttons a:hover,
.action-buttons button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.logo-area img:hover {
  filter: drop-shadow(0 0 6px #2e7d32);
}
.video-wrapper .headline {
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.boxed-steps, .boxed-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.step-box {
  background: white;
  color: #2e7d32;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  flex: 1 1 300px;
  text-align: center;
}
.step-text {
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  body, html {
    font-size: 1rem;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .logo-area {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .action-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .step-box {
    flex: 1 1 100%;
    font-size: 1rem;
  }

  .video-wrapper {
    height: 200px;
  }

  .video-wrapper .headline {
    font-size: 1.4rem;
  }

  footer {
    font-size: 1rem;
    padding: 20px;
  }
}
