/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  min-height: 100vh;
  padding-top: 64px; /* accommodate fixed navbar height */
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(214, 206, 206, 0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 9999;
  padding: 0.75rem 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wrapper {
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

/* Brand (left side of navbar) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 40px;
}

.logo {
  height: 90px;
}

.company-name {
  font-weight: 700;
  font-size: 1.3rem;
  color: #222;
  user-select: none;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #006699;
  outline: none;
}

/* Container wrapper */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Content boxes */
.content-box {
  scroll-snap-align: start;
  min-height: 60vh;
  width: 60%;
  background-color: #b0adad;
  border-radius: 10px;
  padding: 3rem 2rem;
  margin: 5rem auto 5rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Optional different background */
.about-services-section {
  background-color: #b0adad;
}

/* Headings */
h1, h2, h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #003366;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Paragraphs */
p, li {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
}

/* Lists */
.services-list,
.values-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.services-list li,
.values-list li {
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .content-box {
    padding: 2rem 1rem;
    margin: 3rem 1rem 3rem 1rem;
    min-height: 70vh;
    width: 90%;
  }

  .nav-links {
    gap: 1rem;
  }

  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .logo {
    height: 60px;
  }

  .company-name {
    font-size: 1rem;
  }
}

.content-logo {
  display: block;
  margin: 0 auto 0.1rem auto;
  height: 200px;
  width: auto;
}
