/* Global Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.header {
    text-align: center;
    color: #073763;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #6fa8dc;
}

.header h3 {
    font-size: 20px;
    color: #38761d;
    margin-bottom: 20px;
}

/* Content Section */
.content {
    padding: 20px;
}

.content ul {
    list-style-type: disc;
    padding-left: 40px;
}

.content ul li {
    margin: 10px 0;
    font-size: 16px;
}

/* Contact Section */
.contact {
    background-color: #cfe2f3;
    padding: 20px;
    box-shadow: #0dcaf0 10px 10px;
    margin: 20px 0;
    text-align: center;
    border-radius: 8px;
}

.contact h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact p {
    font-size: 16px;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.image-section img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
