/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  line-height: 1.6;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 50px;
}

.brand-name {
  font-size: 20px;
  font-weight: bold;
  color: #0c4c36;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.navbar nav ul li a:hover,
.navbar nav ul li a.active {
  background-color: #0c4c36;
  color: white;
  border-radius: 4px;
}

/* Contact Info Boxes */
.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 120px 20px 40px; /* account for fixed navbar */
}

.contact-box {
  background-color: #fff;
  border: 1px solid #cce7dd;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-box i {
  font-size: 32px;
  color: #0c4c36;
  background-color: #e5f6f0;
  padding: 15px;
  border-radius: 12px;
}

.contact-box h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #0c4c36;
}

.contact-box p {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}

/* Get in Touch Section (Modified) */
.get-in-touch {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.get-in-touch h2 {
  font-size: 34px;
  color: #0c4c36;
  margin-bottom: 20px;
}

.get-in-touch p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 25px auto;
  color: #555;
  line-height: 1.7;
}

/* List styling */
.get-in-touch ul.touch-points {
  list-style: disc inside;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding-left: 0;
  text-align: left;
}

.get-in-touch ul.touch-points li {
  font-size: 17px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.get-in-touch ul.touch-points strong {
  color: #0c4c36;
}

/* Sub-heading */
.get-in-touch h3 {
  font-size: 26px;
  margin-top: 20px;
  color: #0c4c36;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar nav ul {
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    display: none;
  }

  .navbar nav ul.show {
    display: flex;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .get-in-touch ul.touch-points {
    padding-left: 15px;
  }
}
