body {
  background-color: #171717;
  margin: 0;
  padding: 0;
}

.roofer-hero-section {
  background-color: #202020;
  padding: 40px 0;
}

.roofer-content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.roofer-image-container {
  flex: 0 0 auto;
}

.roofer-featured-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.roofer-text-container {
  flex: 1;
  color: white;
}

.roofer-main-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.roofer-description-text {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.roofer-register-button {
  background-color: white;
  color: #181818;
  font-weight: 600;
  padding: 10px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.roofer-register-button:hover {
  background-color: #f0f0f0;
  color: #121212;
}

@media (max-width: 768px) {
  .roofer-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .roofer-main-heading {
    font-size: 1.5rem;
  }

  .roofer-description-text {
    font-size: 0.9rem;
  }
}
