/* Genel sayfa düzeni */
#cpe-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
  }
  
  /* Sol panel */
  .cpe-left {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #f8f9fb;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .cpe-left h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #005f8e;
  }
  
  .cpe-left input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }
  
  /* Sağ panel */
  .cpe-right {
    flex: 1;
    min-width: 300px;
    background-color: #007acc;
    color: white;
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  
  .cpe-box h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  #cpe-summary {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    font-size: 16px;
  }
  
  #cpe-summary li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  #cpe-form-wrapper .cpe-right button {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #007acc;
    border-radius: 6px;
  }
  
  #cpe-form-wrapper .cpe-right button:hover {
    background-color: #005f8e;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    #cpe-form-wrapper {
      flex-direction: column;
    }
  
    .cpe-left,
    .cpe-right {
      width: 100%;
    }
  }