body {
  background: #f7f8f5;
}

.gauvigyan-page {
  padding: 50px 0;
}

/* Main Container */
.content-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Section */
.content-section {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 30px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

/* Section Heading */
.section-title {
  position: relative;
  display: inline-block;
  color: #7b3f16;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  border-radius: 10px;
  background: #d68b32;
}

.content-section p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 18px;
  color: #444;
}

/* Hero */
.intro-header {
  background: linear-gradient(135deg, #713b17, #a96028);
  color: #fff;
  border-radius: 20px;
  padding: 38px 35px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(113, 59, 23, 0.2);
}

.intro-header h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.intro-header p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

/* Goal Cards */
.goal-card {
  height: 100%;
  background: #fffaf3;
  border: 1px solid #f0d7b7;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  transition: 0.3s ease;
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #d68b32;
}

.goal-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #8a481c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.goal-card p {
  margin: 0;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
}

/* Quote */
.quote-box {
  margin: 25px 0;
  padding: 25px;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff8ed, #fffdf9);
  border-left: 5px solid #d68b32;
  text-align: center;
}

.quote-box strong {
  display: block;
  color: #7b3f16;
  font-size: 21px;
  line-height: 2;
}

/* Objective List */
.objective-list {
  counter-reset: objective;
  padding: 0;
  margin: 0;
  list-style: none;
}

.objective-list li {
  counter-increment: objective;
  position: relative;
  padding: 16px 20px 16px 65px;
  margin-bottom: 12px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 15.5px;
}

.objective-list li::before {
  content: counter(objective);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #8a481c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Group Cards */
.group-card {
  height: 100%;
  border-radius: 15px;
  padding: 25px;
  background: #fff;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: 0.3s;
}

.group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.group-label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: #8a481c;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.group-card h5 {
  color: #7b3f16;
  font-weight: 700;
}

/* Benefits */
.benefit-box {
  padding: 20px;
  background: #fff9ef;
  border: 1px solid #efd9bd;
  border-radius: 14px;
  height: 100%;
}

.benefit-box h5 {
  color: #7b3f16;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-box p {
  margin: 0;
  text-align: left;
  font-size: 15px;
}

/* Prize Table */
.prize-table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #eee;
}

.prize-table {
  margin-bottom: 0;
  min-width: 650px;
}

.prize-table thead th {
  background: #7b3f16;
  color: #fff;
  text-align: center;
  padding: 14px;
  white-space: nowrap;
}

.prize-table tbody td {
  padding: 14px;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
}

.prize-table tbody tr:nth-child(even) {
  background: #fffaf3;
}

.prize-amount {
  color: #8a481c;
  font-weight: 800;
}

/* Exam Dates */
.date-card {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ead7c3;
  background: #fff;
}

.date-card-header {
  background: #7b3f16;
  color: #fff;
  padding: 15px 20px;
  font-size: 19px;
  font-weight: 700;
}

.date-item {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.date-item:last-child {
  border-bottom: 0;
}

.phase {
  font-weight: 700;
  color: #7b3f16;
  margin-bottom: 5px;
}

.date {
  font-size: 17px;
  font-weight: 800;
  color: #333;
}

.location {
  color: #777;
  font-size: 14px;
}

/* Notice */
.registration-notice {
  background: linear-gradient(135deg, #fff4df, #fffaf3);
  border: 1px solid #e9c99f;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.registration-notice strong {
  color: #7b3f16;
}

/* Responsive */
@media (max-width: 767px) {
  .gauvigyan-page {
    padding: 25px 0;
  }

  .content-section {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .intro-header {
    padding: 30px 18px;
  }

  .intro-header h1 {
    font-size: 25px;
  }

  .section-title {
    font-size: 23px;
  }

  .content-section p {
    font-size: 15px;
    text-align: left;
  }

  .objective-list li {
    padding-left: 60px;
    font-size: 14px;
  }
}
