/* Global Styles */
* {
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  /* Overview (Hero) Section */
  .overview {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1677598261466-9a06db3e842c?ixlib=rb-4.0.3&fm=jpg&w=2000&q=75') 
                center/cover no-repeat;
    color: #fff;
  }
  .overview header {
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .overview .logo {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
  }
  .overview nav {
    margin-top: 10px;
  }
  .overview nav a {
    display: inline-block;
    margin: 5px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  .overview nav a:hover {
    text-decoration: underline;
  }
  .hero-text {
    padding: 100px 20px 150px;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  .hero-text p {
    font-size: 1.2em;
  }
  
  /* Section Content Styles */
  section {
    padding: 60px 20px;
  }
  section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
  }
  section p {
    max-width: 800px;
    margin: 0 auto 1em;
  }
  
  /* Section Backgrounds */
  #about {
    background: #f9f9f9;
  }
  #highlights {
    background: repeating-linear-gradient(45deg, #ffffff, #ffffff 20px, #f4f4f4 20px, #f4f4f4 40px);
  }
  #contact {
    background: #000;
    color: #fff;
  }
  
  /* Highlights (Features) Section */
  .highlights-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .highlight-item {
    flex: 1 1 300px;
    padding: 20px;
    text-align: center;
  }
  .highlight-item h3 {
    margin-top: 0;
  }
  
  /* Contact Section Links */
  #contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  #contact a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .overview header {
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .overview nav {
      margin-top: 0;
    }
    .overview nav a {
      margin: 0 15px;
    }
    .hero-text h1 {
      font-size: 3em;
    }
    .hero-text p {
      font-size: 1.3em;
    }
  }
  @media (min-width: 1200px) {
    .hero-text h1 {
      font-size: 3.5em;
    }
    .hero-text p {
      font-size: 1.5em;
    }
  }
  