body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0 1rem;
  background-color: #fafafa;
  color: #333;
  text-align: left;
}

header {
  background: #89c9b8;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

section {
  max-width: 800px;
  margin: 2rem 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.info {
  background: #f0f9f7;
  border-left: 4px solid #4fa89a;
  padding: 1rem;
  margin: 1.5rem 0;
}

.contact {
  text-align: center;
}

/* Contact Form Styles */
.contact form {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.contact form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.contact form input[type="text"]:focus,
.contact form input[type="email"]:focus,
.contact form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.contact form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact form .g-recaptcha {
  margin-bottom: 15px;
}

.contact form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact form button:hover {
  background-color: #0056b3;
}

@media (max-width: 500px) {
  .contact form {
    padding: 20px;
  }
}

/* Success message */
#success-msg {
  display: none;
  padding: 1em;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  margin: 1.5em auto;
  /* centers and gives top/bottom spacing */
  font-weight: bold;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Social buttons */
.whatsapp-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.facebook-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #3b5998;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #e6f2f0;
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  section {
    max-width: 100%;
    margin: 1rem;
    padding: 1rem;
  }
}

/* Links */
.camera-link {
  display: inline-block;
  padding: 0.4em 0.8em;
  background-color: #f8f9fa;
  color: #005b96;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.camera-link:hover {
  background-color: #e2e6ea;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 1em;
  text-align: center;
  font-size: 0.95rem;
  z-index: 1000;
  display: none;
}

#cookie-banner button {
  margin-left: 1em;
  padding: 0.4em 1em;
  background-color: #27ae60;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#cookie-banner button:hover {
  background-color: #219150;
}