/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Site Header */
.site-header {
  background: #000;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.site-header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.site-header nav ul li a:hover,
.site-header nav ul li a.active {
  color: #2ec4b6;
}

/* Hero Section */
.hero-contact {
  position: relative;
  height: 50vh;
  background: url('images/contact-hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 80px; /* Offset for fixed header */
}
.hero-contact .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-contact .hero-content {
  position: relative;
  z-index: 2;
}
.hero-contact h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.hero-contact p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Contact Panels Section */
.contact-panels {
  padding: 60px 20px;
  background: #2ec4b6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-panel {
  background: #fff;
  border: 2px solid #2ec4b6;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.contact-panel h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2ec4b6;
  text-align: center;
}
.contact-details {
  list-style: none;
  font-size: 1rem;
}
.contact-details li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.contact-details li i {
  margin-right: 10px;
  color: #2ec4b6;
  font-size: 1.2rem;
}

/* Site Footer */
.site-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-contact h1 {
    font-size: 2.5rem;
  }
  .hero-contact p {
    font-size: 1.2rem;
  }
  .container {
    flex-direction: column;
  }
}
