.franchise-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background-color: #fdfdfd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
  }
  
  .franchise-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #222;
  }
  
  .franchise-section h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    color: #444;
  }
  
  .franchise-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }

  .connect-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .connect-left {
    flex: 1;
    min-width: 300px;
  }
  
  .connect-left h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .connect-left h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .connect-left p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .form-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 500px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  form textarea {
    resize: vertical;
    height: 100px;
  }
  
  form button {
    padding: 12px;
    background-color: #3f51b5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  form button:hover {
    background-color: #2c3e90;
  }
  