/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #001a16;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    background-color: rgba(0, 26, 22, 0.9); /* Slight transparency for modern look */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
  }
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .logo {
    color: #00ffb2;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .navbar .nav-links a:hover {
    color: #00ffb2;
  }
  .navbar .nav-links .try-btn {
    color: #00ffb2;
    border: 1px solid #00ffb2;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .navbar .nav-links .try-btn:hover {
    background-color: #00ffb2;
    color: #001a16;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #004238, #001a16);
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
  }
  .hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('your-background-image.jpg') center/cover no-repeat;
    opacity: 0.2; /* Subtle overlay for texture */
    z-index: -1;
  }
  .hero .content {
    max-width: 800px;
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
  }
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }
  .button-container {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Space between buttons */
  }
  .hero-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #00ffb2;
    color: #001a16;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .hero-btn:hover {
    background-color: #009974;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .navbar .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
    .button-container {
      flex-direction: column;
      gap: 1rem;
    }
    .button-container .hero-btn {
      width: 90%; /* Full-width buttons for smaller screens */
      margin: 0 auto;
    }
  }
  