body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #202124;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  flex-wrap: wrap;
}

.text-section {
  max-width: 45%;
}

.text-section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.text-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-section a {
  color: #1a73e8;
  text-decoration: none;
}

.text-section a:hover {
  text-decoration: underline;
}

.text-section .btn {
  background-color: #1a73e8;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.text-section .btn:hover {
  background-color: #0f5bc0;
}

.image-section {
  position: relative;
  max-width: 50%;
}

.image-section img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.floating-box {
  position: absolute;
  top: 10%;
  left: -15%;
  background: white;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  font-weight: 500;
}

.summary-box {
 position: absolute;
    bottom: 10%;
    right: -7%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 13px;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.summary-box h4 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .text-section, .image-section {
    max-width: 100%;
  }

  .floating-box, .summary-box {
    position: static;
    margin: 15px auto;
  }

  .text-section h1 {
    font-size: 36px;
  }

  .text-section p {
    font-size: 16px;
  }
}

html, body {
  overflow-x: hidden; /* Removes horizontal scroll */
}
