/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #23272a;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: #23272a;
  color: #fff;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  background: #23272a;
  padding: 0.5rem 2rem;
  height: 60px;
  border: none;
  box-shadow: none;
}

.navbar-logo {
  height: 40px;
  margin-right: 1.5rem;
}

.navbar-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.navbar-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.navbar-link:hover,
.navbar-link:focus {
  background: #2c2f33;
  color: #4CAF50;
}

/* Hero section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0;
  border: none;
  background:
    #040228;
  background-image:
    url('visualassets/hero600.png');
  background-repeat: no-repeat;
  background-size: 100% 600px;
  background-position: top;
}

.hero-inner {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.55);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  max-width: 850px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border: none;
}

.hero-inner h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3em;
  margin-top: 0;
}

.hero-inner p {
  font-size: 1.1rem;
  margin-bottom: 1.5em;
  margin-top: 0;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

/* Button styles */
.button {
  background-color: #4CAF50;
  color: white;
  padding: 15px 32px;
  margin: 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.button-primary {
  background-color: #4CAF50;
}

.button-primary:hover {
  background-color: #388e3c;
}

.button-secondary {
  background-color: #23272a;
  color: #fff;
}

.button-secondary:hover {
  background-color: #2c2f33;
}

.button-tertiary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.button-tertiary:hover {
  background-color: rgba(255,255,255,0.12);
  color: #fff;
}

/* Responsive styles */
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 0.5rem 1rem;
  }

  .navbar-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-link {
    width: 100%;
    padding: 10px 0;
    margin: 0;
  }

  .navbar-logo {
    margin-bottom: 0.5rem;
    margin-right: 0;
    height: 32px;
  }
  .hero {
    padding: 0;
    min-height: 100vh;
  }
  .hero-inner {
    padding: 16px 4px;
    max-width: 98vw;
  }
  .hero-inner h1 {
    font-size: 1.3rem;
    margin-bottom: 0.2em;
  }
  .hero-inner p {
    font-size: 0.95rem;
    margin-bottom: 1em;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .button {
    width: 100%;
    font-size: 1rem;
    padding: 10px 0;
  }
}