/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body / Global Styles */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #f7f7f7;
  line-height: 1.6;
}

/* Header / Navigation */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem 5%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo a:hover {
  color: #DAA520;
}

.navbar ul {
  list-style: none;
  display: flex; /* Default: horizontal for desktop */
  gap: 1.5rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar a:hover {
  color: #DAA520;
}

/* Home Section */
.home-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  background: url('consulting_4.jpg') no-repeat center center/cover;
}

.home-section::before {
  /* Increase overlay for darker background */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35); /* Slightly more dark than before */
  z-index: 0;
}

.hero-content {
  position: relative; /* Above the overlay */
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.btn-primary {
  background-color: #DAA520;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #B8860B;
}

/* Section Wrapper */
.section-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #DAA520;
  text-align: center;
}

/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-box h3 {
  margin-bottom: 0.5rem;
  color: #444;
}

/* Target Market */
#market ul {
  text-align: center;         /* Center the bullets and text */
  list-style-position: inside;
  list-style-type: square;    /* Different bullet style */
  margin: 1rem auto;
  display: inline-block;
}

/* Removed Goals Section (HTML and CSS) */

/* Research Section */
.research-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.research-item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.research-item h3 {
  color: #444;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  text-align: center;
}

.contact-section a {
  color: #444;
  text-decoration: none;
  font-weight: bold;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #ffffff;
  padding: 1rem 5%;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #ddd;
}

/* Responsive Design */

/* Tablet & smaller desktops */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    padding: 1rem;
  }

  .navbar ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .services-container,
  .research-list {
    grid-template-columns: 1fr;
  }

  .section-wrapper {
    padding: 2rem 1rem;
  }
}

/* Phones & very small screens */
@media (max-width: 480px) {
  .site-header {
    padding: 0.5rem;
  }

  .navbar ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .logo a {
    font-size: 1rem;
  }

  .navbar a {
    font-size: 0.85rem;
  }

  .home-section {
    min-height: 50vh;
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}
