/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: ghostwhite;
  color: dimgray;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  text-align: center;
}

/* Layout */
.wrapper {
  display: flex;
  flex-direction: column;
}

.header {
  padding: 1px;
}

.container {
  flex: 1;
  overflow-y: auto;
  padding: 2px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
}

.row {
  margin-bottom: 5px;
  padding: 2px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
}

/* Images & SVG */
.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.service-image {
  width: 90%;
  flex-shrink: 0;
}

.svg-wrapper {
  border: 1px solid #ccc;
  overflow: hidden;
}

svg, .responsive-svg {
  display: block;
  width: 95vw;
  height: auto;
  max-height: 90vh;
  background-color: white;
  border: 1px solid #ccc;
}

/* Typography */
h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  opacity: 0.8;
}

a {
  color: darkblue;
  text-decoration: none;
  background-color: transparent;
}

a:active, a:hover {
  color: inherit;
  text-decoration: none;
}

/* Navbar */
.navbar {
  background: #0d0303;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  flex-direction: column;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.nav-links li a {
  color: darkcyan;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6a00;
}

/* Scrollable Section */
.scroll-container {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  gap: 1rem;
}

/* Hide scrollbars */
.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

