/* General Body Styles with Background Image */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url("fundal4.jpg") center/cover no-repeat fixed;
  color: #d0ffd0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Transparent Contact Section */
.contact-container {
  text-align: center;
  padding: 40px;
  background: rgba(0, 50, 0, 0.3); /* Transparent dark green overlay */
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  margin: 20px;
  backdrop-filter: blur(3px); /* Optional: subtle glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #b6fcb6;
}

/* Subtext Tagline */
.tagline {
  font-size: 1.2rem;
  color: #e1ffe1;
  margin-bottom: 30px;
}

/* Contact Info */
.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #f0fff0;
}

.contact-info i {
  color: #aaffaa;
  margin-right: 10px;
}

/* Social Icons */
.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons a {
  text-decoration: none;
  color: #aaffaa;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #ccffcc;
}

/* Responsive Design */
@media (max-width: 600px) {
  .contact-container {
    padding: 20px;
    border-radius: 12px;
  }

  h1 {
    font-size: 1.8rem;
  }

