/* Hero Section */
.hero {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  color: var(--primary-color);
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

/* Content Sections */
section {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}

h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 2em;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

h3 {
  color: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 10px;
  margin-top: 25px;
}

/* Table Styling */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.info-table th,
.info-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.info-table th {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  font-weight: bold;
}

.info-table tr:nth-child(even) {
  background-color: #f4f4f4;
}

/* Call to Action (CTA) */
.cta-section {
  text-align: center;
  padding: 50px 0;
  background-color: #e6e6e6;
}

.cta-section a.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-text-color);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin: 10px;
  transition: background-color 0.3s ease;
}

.cta-section a.button:hover {
  background-color: #8c0000;
}
