.paid-features-section {
    padding: 20px;
    background-color: #000;
    border-radius: 8px;
    border: 3px solid #2d6a4f;
	font-family: "Poppins", sans-serif;
}

.paid-features-section h3 {
	font-family: "Poppins", sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.paid-features-section .list-group-item {
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    color: #000000;
	font-weight:600;
    background-color:#fff;
	font-family: "Poppins", sans-serif;
}

.paid-features-section .list-group-item .h6 {
    font-weight: normal;
}

.paid-features-section .list-group-item:hover {
    background-color: #aacc00;
	cursor:pointer;
}

.paid-features-section .list-group-item:not(:last-child) {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .paid-features-section h3 {
        font-size: 1.5rem;
    }

    .paid-features-section .list-group-item {
        font-size: 1rem;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .paid-features-section h3 {
        font-size: 1.25rem;
    }

    .paid-features-section .list-group-item {
        font-size: 0.95rem;
        padding: 10px;
    }

    .paid-features-section {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .paid-features-section h3 {
        font-size: 1.1rem;
    }

    .paid-features-section .list-group-item {
        font-size: 0.9rem;
        padding: 8px;
    }

    .paid-features-section {
        padding: 10px;
    }
}


.keyword-link {
	 font-size: 1.1rem;
    color: #000000;
	font-weight:600;
	font-family: "Poppins", sans-serif;
    text-decoration: none;  /* Remove underline */
    transition: color 0.3s ease;  /* Smooth color change */
}

.keyword-link:hover {
    color: #000;  /* Darken color on hover */
}


/*** Article Body ***/
.article-page {
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
    max-width: 900px;
    margin: 0 auto; /* Center the article */
}

.article-page h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
	text-decoration:none;
}

.article-page h4 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 10px;
}

.article-page p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: justify;
	letter-spacing:0.5px;
}

.article-page ul {
    padding-left: 20px;
    font-size: 1.1rem;
    color: #555;
}

.article-page ul li {
    margin-bottom: 5px;
}

.article-page a {
    color: #ba2d0b;
	font-weight:650;
    text-decoration: none;
}

.article-page a:hover {
    color: #31cb00;
}

.article-page section {
    margin-bottom: 20px;
}

.banner-image-container {
    text-align: center; 
    margin: 20px 0; 
}

.banner-image {
    width: 100%; 
    max-width: 500px; 
    height: 300px; 
    object-fit: cover; 
}

.banner-image-subtitle {
    font-size: 1.2rem; 
    color: #555;
    margin-top: 10px; 
    text-align: center; 
    font-weight: normal; 
}


@media (max-width: 992px) {
    .article-page h1 {
        font-size: 2rem;
    }

    .article-page h4 {
        font-size: 1.5rem;
    }

    .article-page p {
        font-size: 1.1rem;
    }

    .article-page ul li {
        font-size: 1rem;
    }

    .banner-image {
        max-width: 90%; /* Adjust the image width for medium screens */
    }

    .banner-image-subtitle {
        font-size: 1rem; /* Make the subtitle a little smaller for medium screens */
    }
}

@media (max-width: 768px) {
    .article-page h1 {
        font-size: 1.75rem;
    }

    .article-page h4 {
        font-size: 1.25rem;
    }

    .article-page p {
        font-size: 1rem;
    }

    .article-page ul li {
        font-size: 0.95rem;
    }

    .banner-image {
        max-width: 80%; /* Make the image more flexible for smaller screens */
        height: auto; /* Adjust height automatically */
    }

    .banner-image-subtitle {
        font-size: 0.95rem; /* Adjust the subtitle size on smaller screens */
    }

    .article-page {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .article-page h1 {
        font-size: 1.5rem;
    }

    .article-page h4 {
        font-size: 1.1rem;
    }

    .article-page p {
        font-size: 0.95rem;
    }

    .article-page ul li {
        font-size: 0.9rem;
    }

    .banner-image {
        max-width: 100%; /* Full width for very small screens */
        height: auto; /* Auto height ensures proper scaling */
    }

    .banner-image-subtitle {
        font-size: 0.9rem; /* Subtitle adjusts for mobile view */
    }

    .article-page {
        padding: 15px;
    }
}

