
      /* General Container */
.containers {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff; /* White background */
    color: #111111; /* Black text */
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

/* Main Heading */
.heading-main {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #222222;
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #333333;
    border-left: 4px solid #007BFF;
    padding-left: 12px;
}

/* Paragraphs */
.paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #444444;
}

/* Lists */
.list {
    margin: 10px 0 20px 20px;
    padding-left: 0;
    list-style-type: disc;
    color: #444444;
}

/* List Items */
.list li {
    margin-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .containers {
        padding: 15px;
        margin: 20px;
    }

    .heading-main {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .paragraph {
        font-size: 0.95rem;
    }
}
