/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

h1 {
    font-size: 28px;
    color: #007bff;
}

h2 {
    font-size: 24px;
    color: #0056b3;
}

h3 {
    font-size: 20px;
    color: #003d82;
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style-type: square;
    padding-left: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #0056b3;
}

p {
	margin: 15px 0 !important;
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }
}
