/* cont.css */

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

section#last {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #f9f9f9;
}

.full {
  width: 100%;
  max-width: 450px;
  background-color: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

h3 {
  text-align: center;
  color: #ff0336;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  background-color: #f9f9f9;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #ff0336;
  outline: none;
}

textarea.form-control {
  resize: vertical;
  height: 80px;
}

.send-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #ff0336;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.send-button:hover {
  background-color: #ff0336;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.contact-list .list-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-list .list-item i {
  color: #ff0336;
  margin-right: 6px;
}

.contact-text a {
  color: #ff0336;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}
