/* General Styles */
body {
    font-family: 'Helvetica', sans-serif; /* Changed font to Helvetica */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

.button:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* Header and Navigation */
header {
    background: url('background.png') no-repeat center top/cover; /* Background applied to Hero */
    color: #fff; /* Set text color to white */
    padding: 10px 0;
    border-bottom: none; /* Remove border */
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Bring the content forward */
    z-index: 1;    /* Ensure content is on top of the overlay */
}

.logo img {
    width: 50px; /* Adjust logo size */
}

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

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

nav ul li a {
    color: #fff; /* White font */
    font-weight: bold;
}

.contact-button { /* Style the contact button */
    background-color: #a80000; /* Adjust as needed */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('background.png') no-repeat center top/cover; /* Background applied to Hero */
    height: 500px; /* Adjust height as needed */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: flex-start; /* Align to the left */
    color: #fff;
    position: relative; /* Important for the overlay */
    padding-left: 50px; /* Add left padding for visual spacing */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Adjust the overlay color and transparency */
    z-index: 0; /* Make sure it's behind the content */
}

.hero-content {
    position: relative; /* Bring the content forward */
    z-index: 1;    /* Ensure content is on top of the overlay */
    padding: 20px;
    border-radius: 10px;
    max-width: 800px; /* Adjust the width as needed */
    text-align: left; /* Align the text to the left */
    margin-left: 0; /* Removes any default left margin */

}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a text shadow for readability */
    font-weight: bold; /* Add bold to h1*/
}

.hero p {
    font-size: 1.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add a text shadow for readability */
}

.subtext {
    font-size: 1em;
}

/* Plans Section */
.plans-section {
    padding: 40px 20px;
    text-align: center;
    background: url('455957355_2010535452718303_7001429510954338698_n.jpg') no-repeat center top/cover; /* Background applied to Hero */
    
}

.plan-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 20px auto;
}

.plan {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #eee;
}

.map-container {
    max-width: 800px;
    margin: 20px auto;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/*Content Page Styling */
.content-page {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-page h2 {
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-page p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-page ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

.content-page li {
    margin-bottom: 10px;
}
.red-asterisk {
    color: rgb(171, 0, 0);
}

/* Speed Comparison Section */
.speed-comparison {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Light grey background */
}

.speed-comparison h2 {
    margin-bottom: 20px;
}

/* Adjust iframe container for better responsiveness if needed */
.speed-comparison > div {
    max-width: 1200px; /* Limit chart width */
    margin: 0 auto; /* Center the chart */
}

/* About Us Page Styling */

.about-section {
    padding: 40px 20px;
    text-align: left; /* Align text to the left for a cleaner look */
    background-color: #f9f9f9; /* Light background */
    max-width: 1000px;
    margin: 20px auto; /* Center the content */
    border-radius: 8px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
    
  }
  
  .about-section h2 {
      font-size: 2.5em; /* Larger heading */
      color: #333;
      margin-bottom: 20px;
      border-bottom: 2px solid #ff0000; /* Add a blue line under heading */
      padding-bottom: 10px;
      
  }
  
  .about-section p {
      font-size: 1.1em;
      line-height: 1.7;
      color: #555;
      margin-bottom: 20px;
      
  }
  
  .about-section ul {
      list-style-type: disc;
      padding-left: 20px;
      color: #555;
      margin-bottom: 20px;
      
  }
  
  .about-section li {
      margin-bottom: 10px;
      
  }
  
  /* Optional: Add a style for images within the About Us section */
  .about-section img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 20px;
      background: url('455957355_2010535452718303_7001429510954338698_n.jpg') no-repeat center top/cover; /* Background applied to Hero */
  }

  /* Contact Form Styling */
#contactForm {
    margin-top: 20px;
  }
  
  #contactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
  }
  
  #contactForm input[type="submit"] {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
  }
  
  #contactForm input[type="submit"]:hover {
    background-color: #b30000;
  }

  /* ============================================= */
/* Contact Us Page Styling */
/* ============================================= */

/* --------------------- */
/* General Content Page Styles */
/* --------------------- */

.content-page { /* Inheriting general styles */
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-page h2 {
    color: #333;
    border-bottom: 2px solid #d60000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-page p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-page ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

.content-page li {
    margin-bottom: 10px;
}

/* --------------------- */
/* Contact Form Specific Styles */
/* --------------------- */

#contactForm {
  margin-top: 20px;
}

#contactForm label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}

#contactForm textarea {
  resize: vertical; /* Allow vertical resizing of the textarea */
}

#contactForm input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

#contactForm input[type="submit"]:hover {
  background-color: #0056b3;
}

/* --------------------- */
/* Responsive Adjustments (Example) */
/* --------------------- */

/* Optional: Adjust form layout for smaller screens */
@media (max-width: 600px) {
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm textarea {
    padding: 8px; /* Smaller padding for smaller screens */
  }

  #contactForm input[type="submit"] {
    font-size: 0.9em; /* Smaller font for button */
  }
}