/* contact.css */

.container {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  max-width: 750px;
  margin: 0 auto;
}

.section-title {
  color: #97868a;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-list {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  list-style: none;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #bbb;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #97868a;
}

.info-list li {
  margin-bottom: 20px;
}

.info-list li strong {
  font-weight: bold;
  color: #97868a;
}

.info-list h2 {
  background-color: #97868a;
  color: #fff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
}

/* Add this to make the styles apply to orama-page */
.orama-page .info-list p {
  color: #bbb;
}

/* Add media query to make cta-button full width on small screens */
@media (max-width: 480px) {
  .cta-button {
    width: 100%;
  }
}

/* Form styles */

form {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

form input:focus, form textarea:focus {
  border-color: #aaa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

form textarea {
  height: 100px;
  resize: vertical;
}


.info-list a {
    font-weight: bold;
    text-decoration: underline;
    color: #bbb;
    transition: color 0.3s ease-in-out;
    display: block;
    margin-bottom: 10px;
}

.info-list a:hover {
    color: #97868a;
    text-decoration: underline;
}


.cta-button {
  background-color: #bbb; /* blue background color */
  color: #ffffff; /* white text color */
  border: none; /* no border */
  padding: 10px 20px; /* padding for a nice size */
  font-size: 16px; /* font size */
  cursor: pointer; /* change cursor to a pointing hand */
  border-radius: 5px; /* rounded corners */
  transition: background-color 0.3s ease-in-out; /* smooth transition effect */
}

.cta-button:hover {
  background-color: #97868a; /* darker blue on hover */
}

.cta-button:active {
  background-color: #004d99; /* even darker blue on active */
}