/* === BASE STYLING === */
.become-ceo-section {
    background: #ffffff;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Anton', sans-serif;
  }
  
  .cta-container h2 {
    font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #e60910;
  }
  
  .apply-btn {
    font-size: 1.2rem;
    background: #e40a11;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Anton', sans-serif;
    transition: background 0.3s ease;
    margin-top: 30px;
  }
  
  .apply-btn:hover {
    background: rgb(0, 0, 0);
    color: #fff;
  }
  
  /* === MODAL === */
  .popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 0;
    overflow: hidden; /* 🚫 prevent scroll on modal */
  }
  
  .modal-content2 {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    background: #fff;
    color: #000;
    font-family: 'Corbel Light', sans-serif;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    box-sizing: border-box;
    height: 90vh !important;
  }
  
  /* === MODAL CONTENTS === */
  .modal-content2 h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .terms-box {
    flex-grow: 1;
    overflow-y: auto; /* ✅ Only scroll here */
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .terms-pdf {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  
  .agree-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .agree-section label {
    font-size: 0.95rem;
    font-family: 'Corbel Light', sans-serif;
    font-weight: bold;
  }
  
  .proceed-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .proceed-btn:disabled {
    background: gray;
    cursor: not-allowed;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }
  
  /* === MOBILE RESPONSIVE === */
  @media (max-width: 768px) {
    .modal-content2 {
      margin: 80px 10px; /* 🔽 move slightly down */
      padding: 20px;
      max-height: 85vh;
    }
  
    .terms-box {
      height: 60vh;
    }
  
    .terms-pdf {
      height: 100%;
    }
  }
  