  body {
    font-family: Times New Roman, Times, serif;
	font-size: 100%;
    margin: 0;
    line-height: 1.6;
	background-image: url("../images/Exosome header 3.png");
	background-size: contain; /* or contain, depending on your needs */
	background-position: top right;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 20px; /* add padding to make text readable */
  }
  h1 {
    color: black;
	font-family: Century Gothic, verdana, sans-serif;
    font-weight: bold;
    text-align: left;
    font-size: clamp(3rem, 6vw, 7rem);
    display: block;
    width: 100%;
  }
  h2 {
    font-weight: normal;
	font-family: Century Gothic, verdana, sans-serif;
    text-align: left;
    font-style: normal;
	font-size: clamp(2.1em, 3.1vw, 4rem);
    display: block;
    width: 100%;
  }

  p {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.8);
    padding: 20px;
    box-sizing: border-box;
  }

  ul {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
	background-color: rgb(255,255,255,0.7);
    padding: 20px;
    box-sizing: border-box;
  }
  
  .team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	flex-direction: column;
    align-items: center;
	justify-content: center;
  }
  
   .content {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
  }
  
   .container2 {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Space between images */
  }
  .container2 img {
    max-width: 100%; /* Make images responsive */
    height: auto;
  }

  .text {
    flex: 1; /* Take up remaining space */
  }
  .image1 {
    flex: 1; /* Or set a fixed width if preferred */
	width: 100px auto;
  }

    @media(max-width: 768px){
      .text {
        flex: 1 1 100%; /* stack vertically on small screens */
      }
    }
    @media(max-width: 768px){
      .image {
        flex: 1 1 100%; /* stack vertically on small screens */
      }
    }

@media (max-width: 600px) {
  .container2 {
    flex-direction: column;
  }
}
  
<!-- Exosome Flow Section -->
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .image-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
  }
  .flow-section {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
	background-color: rgb(255,255,255,1);
    padding: 20px;
    box-sizing: border-box;
	border-radius: 20px;
  }
  .arrow {
    font-size: 100px;
    margin: 0 10px;
    color: green;
  }
  .label {
    background-color: #006400;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
	font-size: 1.2em;
  }
  img {
    max-width: 150px;
    height: auto;
    padding: 5px;
    background-color: #fff;
  }
  .container2 {
    display: flex;
    justify-content: center; /* Center the images horizontally */
    gap: 20px; /* Space between images */
  }
  .container2 img {
    max-width: 100%; /* Make images responsive */
    height: auto;
  }
   .content1 {
    max-width: 800px;
    margin: 0 auto;
  }
  .image {
    flex: 1; /* Or set a fixed width if preferred */
  }
  .text {
    flex: 1; /* Take up remaining space */
  }
  
   .content-button {
    max-width: 800px;
    margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  /* Buttons container */
  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  /* Style for each button */
  .btn {
    background-color: #008000; /* green */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
	font-size: 2.0em;
    text-align: center;
    min-width: 150px;
  }
  .btn:hover {
    background-color: #006400;
  }