/* Global styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    margin: 20px;
  }
  
  .header {
    margin: 0;
  }
  
  .logo-container {
    margin-right: 10px;
  }
  
  .logo {
    max-width:100%;
    width: auto;
    height: auto;
    margin: auto;
    margin-bottom: 2%;
  }
  
  .header-content {
    text-align: center;
  }
  
  .header-text {
    margin: 0;
  }
  
  .sub-header-text {
    margin: 0;
  }

  .social-icon-a{
    color: #aaaaaa;
    transition: colour 0.2s;
    text-decoration: none;
  }

  .social-icon{
    max-width:  200%;
  }

  .social-icon-a:hover{
    color: #333333;
  }

  /* Section styles */
  section {
    padding: 20px 0;
    background-color: #fff;
    margin-bottom: 20px;
  }
  
  section h2 {
    margin-bottom: 50px;
    font-size: 2rem;
  }
  
  section ul {
    list-style: none;
    padding: 0;
  }
  
  section li {
    margin-bottom: 10px;
  }


  
  /* Button styles */
  .btn {
    display: inline-block;
    background-color: #005980;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #00324d;
  }
  
  /* Coverage map styles */
  .coverage-map {
    text-align: center; /* Center-aligns content */
    margin-bottom: 20px;
  }

  .coveragemap {
    max-width: 90%; /* Ensures the map doesn't overflow its container */
    height: auto; /* Maintains the aspect ratio of the map */
    display: inline-block; /* Allows centering with text-align */
  }
  
  /* Form styles */
  form {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  form label {
    display: block;
    margin-bottom: 10px;
  }
  
  form input,
  form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  form input[type="submit"] {
    background-color: #005980;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form input[type="submit"]:hover {
    background-color: #00324d;
  }
    
  /* Footer styles */
  footer {
    text-align: center;
    margin-top: 20px;
  }
    
  footer p {
    margin: 0;
  }
  
  footer a {
    text-decoration: none;
  }
  
  