.Both {
    max-width: 1200px;
    margin: 0 auto;
}

.Completed {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Completed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.Completed h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.Completed p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.Completed p.faqs {
    font-weight: bold;
    color: #252525;
}

.Completed .alert-success {
    background-color: #d4edda;
    color: rgb(78, 148, 94);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.Completed img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 15px;
}

.Completed ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.Completed ul li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.Completeda {
    color: #007bff;
    text-decoration: none;
}

.Completed a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .Completed {
      padding: 15px;
    }

    .Completed h3 {
      font-size: 16px;
    }

    .Completed p {
      font-size: 13px;
    }
}