* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fdfdfb;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 80vh;
  background: url('images/thryve_header.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 3px;
}

.hero h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0.5rem 0;
}

.hero .tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* SECTIONS */
section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: auto;
}

.intro h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.intro p {
  margin-bottom: 1rem;
  text-align: justify;
}

blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #98b49c;
  background: #f2f6f3;
  font-style: italic;
}

/* DETAILS */
.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h4 {
  margin-bottom: 0.8rem;
  color: #446b53;
}

.card a {
  color: #446b53;
  text-decoration: none;
}

/* APPLY SECTION */
.apply {
  text-align: center;
  background: #f6f9f6;
  border-top: 2px solid #e3ede6;
  padding: 3rem 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #446b53;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #365742;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #446b53;
  color: #fff;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .intro h3 { font-size: 1.5rem; }
}
