/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
  }

  .container p{
    font-size: 15px;
    margin-bottom: 0px;
  }
  
  h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .btn-cvr{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 0.5rem 0;
  }
  
  .vip {
    background-color: #3498db;
    color: white;
  }
  
  .vip:hover {
    background-color: #2980b9;
  }
  
  .full-vip {
    background-color: #e74c3c;
    color: white;
  }

 
  
  .full-vip:hover {
    background-color: #c0392b;
  }
  
  /* Form Styles */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 70px;
  }
  
  label {
    font-weight: 600;
    font-size: 20px;
    color: #34495e;
  }
  
  input, select {
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  input:focus, select:focus {
    border-color: #3498db;
    outline: none;
  }
  
  button[type="submit"] {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    font-size: 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #27ae60;
  }
  
  /* Radio and Checkbox Styles */
  input[type="radio"], input[type="checkbox"] {
    margin-right: 0.5rem;
  }
  
  /* Hidden Sections */
  .hidden {
    display: none;
  }
  
  /* Confirmation Page Styles */
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  ul li {
    background: #ecf0f1;
    margin: 0.5rem 0;
    padding: 0.75rem;
    border-radius: 4px;
    color: #333;
  }


  .phone-input-container{
    display: flex;
    
  }

  #countryCode, #WcountryCode{
    width: 35%;
    font-size: 13px;
    border-top-right-radius:0 ;
    border-top-left-radius:0 ;
  }

  #phone, #Wphone{
    width: 65%;
    border-top-right-radius:0 ;
    border-top-left-radius:0 ;
  }

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
      width: 85%;
    }
  
    h1 {
      font-size: 1.75rem;
    }
  
    h2 {
      font-size: 1.25rem;
    }
  
    .btn {
      width: calc(100% - 3rem);
    }
  }