* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #f9f9f9;
  color: #111;
  line-height: 1.6;
}

.header {
  text-align: center;
  padding: 40px 20px 20px;
}

.header h1 {
  font-size: 2rem;
  font-weight: bold;
}

.header p {
  margin-top: 10px;
  font-size: 1rem;
}

.main-image {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.main-image img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.column {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 350px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: #f1f1f1;
}

.column img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-top: 10px;
  object-fit: cover;
}

.column-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
}

.column-group h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #111;
}


.contact {
  text-align: center;
  padding: 40px 20px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background-color: #007bff;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #0056b3;
}

.footer {
  text-align: center;
  padding: 20px;
}

.footer a {
  margin: 0 10px;
  font-size: 24px;
  color: #333;
  transition: color 0.3s;
}

.footer a:hover {
  color: #007bff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.social-icons a {
  font-size: 24px;
  color: #444;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons .facebook {
  color: #3b5998;
}

.social-icons .instagram {
  color: #e1306c;
}

.social-icons .twitter {
  color: #000;
}

.social-icons .youtube {
  color: #ff0000;
}

#reload-captcha {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 8px;
  transform: scale(1);
  transition: transform 0.2s ease;
}

#reload-captcha:hover {
  transform: scale(1.2) rotate(20deg);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.form-feedback {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: none;
  text-align: center;
}

.form-feedback.success {
  color: green;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.form-feedback.error {
  color: red;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.error-message {
  color: red;
  font-size: 0.9rem;
  display: none;
  margin-top: 5px;
}

