/* General Section Styling */
.content-section, .details-section {
    padding: 40px 20px;
    background-color: #fff;
    color: #333;
    text-align: left;
    max-width: 1200px; /* Limits the width of the section */
    margin: 20px auto; /* Centers the section on the page */
    border: 2px solid #fff;
    border-radius: 15px; /* Rounded corners */
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
}

h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.content-section, .details-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* Bullet Points Styling */
.bullet-points {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 40px;
}

.bullet-points li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* Extra Paragraph Styling */
.extra-content p {
    margin-bottom: 15px;
}

/* Details Section Styling */
.details-section h1 {
    margin-top: 50px;
    margin-bottom: 30px;
}

.section-details .detail {
    margin-bottom: 40px;
}

.section-details h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.section-details p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section, .details-section {
        padding: 20px 10px;
        max-width: 100%; /* Allows the sections to use full width on small screens */
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .section-details h2 {
        font-size: 1.3em;
    }
}
