body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: #0056b3;
}

h1 {
  font-size: 2em;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 10px;
}

h2 {
  font-size: 1.5em;
  margin-top: 20px;
  border-left: 5px solid #0056b3;
  padding-left: 10px;
}

p {
  margin: 10px 0;
  line-height: 1.8;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.email {
  color: #0056b3;
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

.icon {
  width: 20px;
  height: 20px;
}

/* Media Queries for Responsiveness */

/* Tablets */
@media (max-width: 768px) {
  .container {
    max-width: 90%;
    padding: 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.3em;
    padding-left: 8px;
  }

  p {
    line-height: 1.7;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .container {
    max-width: 95%;
    padding: 10px;
  }

  h1 {
    font-size: 1.5em;
    text-align: center;
  }

  h2 {
    font-size: 1.2em;
    padding-left: 5px;
  }

  p {
    line-height: 1.6;
  }

  .icon {
    width: 16px;
    height: 16px;
  }
}
