 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      background: #b22222;
	  color: #fff;
      text-align: center;
    }
   .header-container {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  max-width: 900px;
	  margin: auto;
	}

	header img {
	  max-width: 200px;
	  margin-right: 20px;
	}

	.header-text {
	  text-align: left;
	}

   section {
      padding: 40px 10px;
     max-width: 1024px;
      margin: auto;
    }
    h2 {
      color: #b22222;
    }
    nav {
      background: #ffcc00;
      padding: 10px;
      text-align: center;
    }
    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #333;
      font-weight: bold;
    }
 
    h2 {
      color: #b22222;
    }
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 15px;
      margin-top: 20px;
    }
	

@media (max-width: 768px) {

   .header-container {
    flex-direction: column;   /* stack logo above text */
    text-align: center;       /* center text under logo */
  }

  header img {
    margin: 0 auto 15px;      /* center logo and add spacing below */
  }

  .header-text {
    text-align: center;       /* center-align text for mobile */
  }
}