/* General Body Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f8f8f8; /* Light gray background */
  color: #333; /* Dark gray text */
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: #1a1a1a; /* Dark black header */
  color: white;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

header h1 {
  margin: 0;
  font-size: 2.8em;
  letter-spacing: 1.5px;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
  opacity: 0.8;
}

/* Section Styles */
section {
  padding: 40px 5%;
  margin: 0 auto;
  max-width: 1000px;
  background-color: #ffffff; /* White section background */
  border-bottom: 1px solid #e0e0e0; /* Light gray border */
}

section:last-of-type {
  border-bottom: none;
}

section h2 {
  color: #1a1a1a; /* Dark black heading */
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #666666; /* Gray accent line */
}

section p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Key Benefits List */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  background-color: #f0f0f0; /* Light gray item background */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefit-item h3 {
  color: #444444; /* Darker gray for benefit titles */
  margin-top: 0;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 1em;
  color: #555;
  text-align: left; /* Align text left for better readability in list items */
}

/* Call to Action Button */
.cta-button-container {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #444444; /* Dark gray button */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #666666; /* Lighter gray on hover */
  transform: translateY(-2px);
}

/* Contact Section */
.contact-info {
  text-align: center;
  font-size: 1.1em;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a.link {
  color: #666666; /* Gray link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a.link:hover {
  color: #444444; /* Darker gray on hover */
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
  font-size: 1.8em; /* Adjust as needed for icon size */
  color: #1a1a1a; /* Dark black social icons */
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #666666; /* Gray on hover */
}

/* Footer Styles */
footer {
  background-color: #1a1a1a; /* Dark black footer */
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }

  section {
    padding: 30px 4%;
  }

  section h2 {
    font-size: 1.8em;
  }

  .benefits-grid {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }
}
