.herbal-discovery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.herbal-image {
    width: 100%;
    padding: 5px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.herbal-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.herbal-text {
    text-align: center;
    padding: 20px;
}

.herbal-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.herbal-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.herbal-text ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
    margin: 20px auto;
    max-width: 800px;
    color: #666;
}

.herbal-text ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.btn-discover {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: #555;
}
