/* Apply the font to the entire webpage */
body, h1, h2, h3, h4, h5, h6, p, a, li {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0.2;
    margin-bottom: 20px;
    padding: 0.2;
    background-color: #ffffff; /* Optional: Light background color */
    color: #000; /* Default text color */
    zoom: 100%;
}

body {
    transform: scale(1); /* Scales the content to 100% */
    transform-origin: 0 0; /* Ensures scaling starts from the top-left corner */
}

p{
    font-size: 1em;
    margin-bottom: 20px;
    color: #000; /* Default text color */
    line-height: 1.3;
}
/* Container styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

/* Header styling */
header {
    display: flex;
    align-items: left;
    margin-bottom: 50px;
}
header img {
    max-height: 250px; /* Ensures the image height adjusts dynamically */
    width: auto; /* Maintains the aspect ratio */
    border-radius: 10%; /* Optional: Rounded corners */
}

header div {
    flex: 1; /* Ensures the text takes up the remaining space */
}

header h1, header p {
    margin: 10; /* Removes default margins for better alignment */
}

/* Section styling */
section {
    margin-bottom: 20px;
}

section h2 {
    font-size: 2em;
    color: rgb(0, 125, 255);
}

section p {
    font-size: 1em;
    line-height: 1.6;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

.custom-background {
    background-color: #c8e4fc; /* Light blue background color */
    width: 100%; /* Set the width to 80% of the parent container */
    margin: 0 auto; /* Center the div horizontally */
    padding: 0px; /* Add padding inside the div */
    border-radius: 0px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.custom-background p, .custom-background a {
    background-color: transparent; /* Ensure no background color is applied to <p> */
}
