/* 
  Basic reset / box-sizing
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    background-color: #000; /* overall black background */
  }
  
/* HEADER / NAV */
.main-header {
  width: 100%;
  /* Increase top/bottom padding so the logo has more space */
  padding: 3rem 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

/* The container for the logo image */
.logo-container {
  display: inline-block;
}

/* Make the logo a bit bigger to match page1's look */
.logo {
  height: 120px;    /* increase or decrease for preference */
  width: auto;     /* keeps the aspect ratio */
  margin-right: 6rem;
}
  
  /* HERO SECTION */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: 3rem;
    background: url('../images/dotted-world-map.png') center center no-repeat;
    background-size: cover; 
    /* 
      Or if you need the dotted map mostly subdued, 
      you might do something like background-size: contain or a separate overlay 
    */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  /* The text side in the hero */
  .hero-content {
    max-width: auto;
  }
  
  .hero-content h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 3rem; /* same as the second text's size, if needed */
    color: #00a4c9;  /* same color used by "Experience peace of mind..." */
    /* any other styling needed for an exact match */
    margin-left: 5rem;
  }
  
  .hero-list {
    font-family: "Open Sans", sans-serif;
    list-style: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 5rem;
    font-size: 2rem;
  }
  
  .hero-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 50px; /* indentation for the bullet image */
  }
  
  .hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0em; /* vertical alignment tweak */
    width: 40px;
    height: 40px;
    background: url('../images/bulletpoint.png') no-repeat center center;
    background-size: 40px 40px; /* or a specific size like 20px 20px */
  }
  
  /* The "alert" box from page2 */
  .alert-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    max-width: 400px;
  }
  
  .alert-box h3 {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #00bfff; /* bright accent color if you like */
  }
  
  .alert-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  
  .alert-box button {
    background-color: #00bfff;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
  }
  .alert-box button:hover {
    background-color: #03a9f4;
  }
  
  /* The image side in the hero */
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .macbook {
    max-width: 100%;
    height: auto;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      align-items: flex-start;
    }
    .hero-content, .hero-image {
      width: 100%;
      max-width: 100%;
      margin-bottom: 2rem;
    }
    .hero-image {
      justify-content: flex-start;
    }
  }

  .macbook-container {
    position: relative;   /* enables absolute positioning of the screenshot */
    max-width: 600px;     /* or whatever width you want for the overall MacBook mock */
    margin: 0 auto;       /* center horizontally if desired */
  }
  
  .macbook-mock {
    display: block;
    width: 200%;
    height: auto;
  }
  
  /* Absolutely position the screenshot so it appears within the MacBook screen */
  .macbook-screen {
    position: absolute;
    top: 13.5%;       /* adjust until it aligns with the screen “top edge” */
    left: 0%;       /* adjust for the left edge */
    width: 200%;     /* fill the width of the “screen” area */
    height: 68%;    /* fill the height of the “screen” area */
    object-fit: contain; 
    /* or "object-fit: contain" if you don't want edges cropped */
    /* pointer-events: none; // optional, so it doesn't interfere with clicks */
  }