.franchise-consultancy {
    padding: 60px 20px;
    background-color: #ffffff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.content {
    flex: 1;
    padding: 20px;
}

.content h1 {
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content ul li {
    background: #fff4f4;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 5px solid #d32f2f;
    font-size: 1rem;
    color: #333;
}

.cta-btn {
    background-color: #d32f2f;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #b71c1c;
}

.image {
    flex: 1;
    text-align: center;
}

.image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .content {
        padding: 0;
    }
}

.topic-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      padding: 15px 20px;
      margin-bottom: 20px;
      border-left: 5px solid #2980b9;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
     
    }

    .topic-card:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

    .topic-card h2 {
      margin-top: 0;
      color: #2980b9;
      font-size: 22px;
    }

    .topic-card ul {
      margin: 10px 0 0;
      padding-left: 20px;
    }

    .topic-card ul li {
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .topic-card {
        padding: 15px 18px;
      }
    }