body{
    background-color: rgb(34, 34, 34);
    font-size: var(--font-size);
    font-family: "DynaPuff", itim;
    font-weight: 600;
    color: gainsboro
}

.apply-font{
    font-family: "DynaPuff", itim;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

.secondary-color{
    color: green
}

section {
    padding: 20px;
    display: flex; /* Use flexbox for centering */
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
}

.container {
    max-width: 800px;
    margin: 0 auto; /* Centers the container */
}

.feature {
    background-color: rgb(20, 20, 20);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 10px;
    text-align: center; /* Center text within each feature */
}
.feature img {
    max-width: 100%; /* Ensure images don't overflow their containers */
    height: auto;     /* Maintain aspect ratio */
    margin-bottom: 10px;
}
.feature h2 {
    color: #28a745;
}
.feature p {
    line-height: 1.6;
}
.hero-container { /* New container for the header content */
    max-width: 1200px; 
    width: 90%; /* Take up 90% of the available width, up to max-width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add some padding */
}

a{
    text-decoration: none;
}

.cta {
  border-radius: 10px;
  background-color: rgb(20, 20, 20); /* Light gray background */
  padding: 30px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  background-color: #28a745; /* Green button */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px; /* Add some space between buttons */
}

.testimonials {
  padding: 30px 0;
  text-align: center;
}

.testimonial {
  background-color: rgb(20, 20, 20); /* Light gray background */
  padding: 20px;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto; /* Center the testimonials */
  margin-bottom: 10px;
}

.testimonial p {
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial p:last-child {
  font-style: normal;
  font-weight: bold;
}