/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff,
}

/* Full-screen section */
.proposal-section {
  width: 100%;
  height: 50vh;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Box Container */
.proposal-box {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 50px 60px;
  text-align: center;
  max-width: 900px;
  width: 90%;
}

/* Logo */
.logo {
  width: 100px;
  max-width: 250px;
  /* margin-bottom: 20px; */
  margin-top: -10px;  
}

/* Heading */
.main-text {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  margin-top: -20px;

}

/* Subtext */
.sub-text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 40px;

}

/* Button */
.proposal-button {
    margin-bottom: 40px;
  background-color:#6b21a8;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.proposal-button:hover {
  background-color: #f3e8ff;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .proposal-box {
    padding: 40px 20px;
  }

  .main-text {
    
    font-size: 20px;
  }

  .sub-text {
    font-size: 15px;
  }

  .proposal-button {
    width: 100%;
    font-size: 16px;
  }
}
