body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

a {
    color: #0078d7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styling */
.header {
    background-color: transparent;
    color: #0b3954;
    padding: 20px;
    text-align: center;
    box-shadow: none;
}

.header h1 {
    font-size: 3.0em;
    margin: 0;
    font-weight: 700;
    color: #0b3954;
}

.header p {
    font-size: 1.2em;
    margin: 10px 0 0;
    color: #0b3954;
}

.header a {
    color: #0078d7;
}

.header a:hover {
    color: #32549a;
}

/* Content Container Styling */
.content-container {
    width: 80%;
    margin: 30px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.content-section h2 {
    font-size: 2.2em;
    color: #002855;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructions {
    margin-top: 30px;
}

.instructions h3 {
    font-size: 1.8em;
    color: #002855;
    margin-bottom: 10px;
}

.instructions ol {
    list-style-type: decimal;
    margin-left: 20px;
}

.instructions ol li {
    margin-bottom: 15px;
}

.instructions ul {
    list-style-type: disc;
    margin-left: 20px;
}

.instructions ul li {
    margin-bottom: 10px;
}

/* Contact Info Styling */
.contact-info {
    margin-top: 40px;
    background-color: #f4f7f6;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.6em;
    color: #002855;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1em;
    margin: 5px 0;
}