/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #eb9381, #ffde00);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 4px solid #ffde00;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #333;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #f4f4f4;
}

/* Categories */
.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 15px;
  background: #f8f8f8;
}

.category-card {
  background: #fff;
  border: 2px solid #eb9381;
  border-radius: 15px;
  padding: 20px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #eb9381;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;.category-card {
  background: #fff;
  border: 2px solid #eb9381;
  border-radius: 15px;
  padding: 20px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #eb9381;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

  display: inline-block;
}


.category-card:hover {
  background: #eb9381;
  color: #fff;
}

/* Featured Opportunity */
.featured {
  padding: 40px 20px;
  text-align: center;
}

.opportunity-card {
  background: #fff;
  border-left: 5px solid #ffde00;
  padding: 25px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.view-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #eb9381;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}

.view-button:hover {
  background: #d87669;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
}
