/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 0;
    font-size: 16px;
}

h1, h2, h3, h4 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    font-size: 32px;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Styling Lists */
ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    line-height: 1.5;
}

/* Blockquote Style */
blockquote {
    margin: 20px 0;
    padding: 15px;
    background: #eaf2f8;
    border-left: 5px solid #3498db;
    font-style: italic;
    color: #555;
}

/* Code Section */
code {
    background-color: #f3f4f6;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 14px;
}

/* Table Style */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-transform: uppercase;
}

/* Buttons */
button {
    background-color: #3498db;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p, ul, li {
        font-size: 14px;
    }
}
