.getStarted {
  padding: 100px 50px;
}

.getStartedCard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #5d94fe, #517bfa);
  padding: 20px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  flex-wrap: wrap;
}

.getStartedCard_left {
  width: 75%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.getStartedCard_left h1 {
  font-size: 60px;
  font-weight: 600;
}

.getStartedCard_left_text h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.getStartedCard_left_text p {
  font-size: 12px;
  color: #e0e0e0;
}

.getStartedCard_right img {
  width: 100px;
  border: 3px solid white;
  border-radius: 15px;
  padding: 15px;
}

/* Drawer Styles */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h1 {
  font-size: 28px;
  margin: 0;
}

.close-drawer {
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
}

.drawer h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}

.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 20px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.submit-button {
  background: linear-gradient(90deg, #74A0FF, #3E6DEE);
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
}

.submit-button:hover {
  opacity: 0.8;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center; align-items: center;
  z-index: 2000;
}

.popup.show {
  display: flex;
}

.popup_container {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.popup_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.popup_header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.popup_container p {
  font-size: 14px;
  font-weight: 500;
}

.close {
  font-size: 20px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .getStartedCard_left h1 {
    font-size: 36px;
  }

  .drawer {
    width: 100%;
  }
}