/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #003366; /* Dark blue, matching the logo */
}

header {
  margin-bottom: 20px;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative; /* Ensure child pseudo-elements stay inside */
  background: url('images/RTK-Logo.webp') no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Only cover .hero */
  background: rgba(0, 0, 0, 0.4); /* Darker overlay for better readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

nav {
  position: relative;
  z-index: 10; /* Ensure navigation is always clickable */
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  z-index: 2;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.cta-button {
  background-color: #0055A4;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
}

.content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #003366;
  color: #fff;
}
