* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Logos and Top Text */
.logo {
  display: flex;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 20px;
  padding: 10px 60px;
  align-items: center;
  justify-content: flex-start;
  background-color: #f7f7f7;
}

.logo_one,
.logo_two {
  width: 90px;
}

.logo_one img,
.logo_two img {
  width: 100%;
  height: auto;
  display: block;
}

.top {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.top .first {
  color: #b72b00;
  font-weight: 600;
  font-size: 1rem;
}

.top .second {
  color: #264f8b;
  font-weight: 600;
  font-size: 1.5rem;
}

.top .third {
  color: #b72b00;
  font-weight: 600;
  font-size: 1rem;
}

.heading {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* Main Layout */
.wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 20px;
  padding: 0 20px;
}

/* Left Section */
.left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* top alignment */
  align-items: flex-start; /* left alignment */
  padding-top: 60px;
  padding-left: 40px;
}

.left h1 {
  font-size: 3rem;
  margin: 20px 0;
  font-weight: 700;
}

.left p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  font-weight: 600;
}

.left p:last-child {
  font-size: 14px;
  color: gray;
}

/* Right Section */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image {
  width: 100%;
  max-width: 450px;
  padding: 10px;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: green;
  color: white;
  padding: 10px;
}
/* Responsive Tablets */
@media (max-width: 1024px) {
  .left {
    padding: 60px 40px;
  }

  .left h1 {
    font-size: 2.5rem;
  }

  .logo {
    padding: 15px 40px;
  }

  .top .second {
    font-size: 1.3rem;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .left {
    padding: 40px 20px;
    text-align: center;
    align-items: center; /* center text */
  }

  .left h1 {
    font-size: 2rem;
  }

  .left p {
    font-size: 1rem;
  }

  .right {
    padding-bottom: 30px;
  }

  .image {
    max-width: 300px;
  }

  .logo {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo_one,
  .logo_two {
    width: 60px;
  }

  .top {
    margin-left: 0;
    text-align: center;
  }

  .top .second {
    font-size: 1.2rem;
  }
}
