* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  margin: 0;
  font-family: Arial, sans-serif;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.logo-top,
.logo-bottom {
  font-size: 1.2rem;
}

.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-section,
.insights-section,
.contact-section {
  padding: 60px 40px;
  background-color: white;
  text-align: center;
  margin-top: 80px; /* Navbar altında başlasın */
}

.approach-section h2,
.insights-section h2,
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.approach-section p,
.insights-section p,
.contact-section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 30px;
}

.contact-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: #444;
}

.contact-info h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #111;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 10px 0;
  }

  .logo-top,
  .logo-bottom {
    font-size: 1.1rem;
  }

  .approach-section,
  .insights-section,
  .contact-section {
    padding: 40px 15px;
  }

  .approach-section p,
  .insights-section p,
  .contact-info {
    padding: 0 5px;
  }
}