/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Header Styles */
h1 {
    font-size: 32px;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-top: 30px;
}

/* Paragraph Styling */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Numbering Styles */
.article-section {
    margin-bottom: 20px;
}

.article-section div {
    margin-left: 20px;
}

.article-section div div {
    margin-left: 20px;
}

/* Contact Info */
.contact-info strong {
    color: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }
}
