/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7faff;
  color: #0f1724;
}

header {
  background: linear-gradient(135deg, #07a6c6, #00b3a6);
  color: white;
  text-align: center;
  padding: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

h1, h2 {
  margin-bottom: 10px;
}

section {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Info */
.contact-info p {
  font-size: 16px;
  margin: 8px 0;
}
.contact-info a {
  color: #07a6c6;
  text-decoration: none;
  font-weight: bold;
}
/* Contact Links */
.contact-info a {
  display: inline-block;
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 8px;
  background: #07a6c6;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.contact-info a:hover {
  background: #0593a9;
}


/* Form Styling */
form {
  display: flex;
  flex-direction: column;
}
label {
  margin-top: 15px;
  font-weight: bold;
}
input, textarea {
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: border-color 0.3s;
}
input:focus, textarea:focus {
  border-color: #07a6c6;
  outline: none;
}
button {
  margin-top: 20px;
  padding: 14px;
  background: #07a6c6;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #0593a9;
}

/* Response Message */
#formResponse {
  margin-top: 15px;
  font-size: 15px;
  padding: 10px;
  border-radius: 8px;
}
.hidden {
  display: none;
}
.success {
  background: #d4f8e8;
  color: #056608;
  border: 1px solid #38a169;
}
.error {
  background: #ffe0e0;
  color: #b10000;
  border: 1px solid #d93025;
}
.footer {
  background: #001f4d; /* dark blue */
  color: #ffffff;
  padding: 40px 20px;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-section {
  margin: 15px;
}

.footer-section h3 {
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 2px solid #07a6c6;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #07a6c6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #07a6c6;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}
img{
    width: 40%;
    height: 40%;
    display: flex;
    margin: 50px;

}
.back {
  background-color: #07a6c6;       /* Nivera blue */
  color: white;
  border: none;
  padding: 20px 35px;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
  margin-left: 50%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.back:hover {
  background-color: #05889f;       /* Darker on hover */
  transform: translateY(-2px);
}

.back:active {
  transform: scale(0.97);
}

a {
  text-decoration: none;           /* Remove underline from link */
}

