
.form {
  background-color: rgba(168, 168, 168, 0.192);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(56, 56, 56, 0.1);
  width: 100%;
  max-width: 500px;
  margin-top: 60px;
  margin-left: 30%;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 6px;
  font-weight: 600;
  color: blue;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border: 2px solid rgb(22, 22, 22);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: blue;
  outline: none;
}

.hint {
  font-size: 12px;
  color: gray; 
  margin-top: 4px;
}

.error {
  color: red; 
  font-size: 13px;
  margin-top: 4px;
  min-height: 16px;
}

.success {
  color: green;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}


.field.inline {
  flex-direction: row;
  align-items: center;
}

.checkbox input[type="checkbox"] {
  margin-right: 10px;
  accent-color: rgb(6, 238, 6);
}

.btn-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

button.btn {
  flex: 1;
  padding: 7px;
  border: 2px solid rgb(29, 58, 189);
  border-radius: 8px;
  background-color: rgb(253, 254, 255);
  color: rgb(29, 58, 189);
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button.btn:hover {
  background-color:rgb(23, 20, 201);
  color: rgb(255, 255, 255);
}

button.ghost {
  background-color: white;
  border: 2px solid rgb(29, 58, 189);
  color: rgb(29, 58, 189);
}

button.ghost:hover {
  background-color: rgb(23, 20, 201);
  color: white;
}

@media (max-width: 720px) {
  .form {
    padding: 20px;
  }
  .form {
  background-color: rgba(168, 168, 168, 0.226);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(56, 56, 56, 0.1);
  max-width: 350px;
  margin-top: 60px;
  margin-left: 50px;
  margin-bottom: 20px;
}
}
.words{
  width: 100%;
  background-color: rgba(255, 255, 255, 0.795);
}
div h3{
  color:blue;
  text-align: center;
  margin-top: 30px;
  padding: 5px;

}

.form:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(1, 1, 5, 0.925);
}
body{
  background-image: url(contact.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  object-fit: cover;
}

.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: blue;
}

.faq-container {
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(2, 19, 180);
}

.faq-question:hover {
  background:white;
}

.faq-question span {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white
}

.faq-answer.open {
  padding: 20px;
  max-height: 200px;
}
.social-section {
  text-align: center;
  padding: 40px 20px;
  background: whitesmoke;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 800px;
}

.social-section h2 {
  margin-bottom: 30px;
  color: blue;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.social-link.facebook { background: rgb(6, 35, 202); }
.social-link.twitter { background:rgb(0, 174, 255); }
.social-link.instagram { background: rgb(233, 20, 38); }