/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header, footer {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
}

button {
    border-radius: 20px;
    border-color: black;
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}

#logo{
    width: 200px;
    height: 200px;
}
/* Body Styling */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Heading Styles */
h1 {
    font-size: 2em;
    text-align: center;
    color: #007e77;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    text-align: center;
    color: #4d5051;
    margin-bottom: 15px;
}

/* Ordered List Styling */
ol {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}

ol > li {
    margin-bottom: 15px;
}

ol ol {
    margin-left: 20px;
    padding-left: 15px;
}

ol ol li {
    list-style-type: lower-alpha;
    margin-bottom: 10px;
}

ol ol ol {
    list-style-type: lower-roman;
}

/* Paragraph Styling */
p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Link Styling */
a {
    color: #007e77;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Highlight Key Information */
strong {
    font-weight: bold;
    color: #333;
}

/* Table-Like Structure for Contact Details */
ol li ol li {
    padding: 5px 0;
}

/* Add Borders for Nested Lists */
ol ol {
    border-left: 3px solid #007e77;
    padding-left: 10px;
}

/* Add Subtle Background for Important Sections */
li > p {
    background: rgba(123, 219, 187, 0.1);
    padding: 10px;
    border-left: 5px solid #007e77;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 678px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.4em;
    }

    body {
        padding: 10px;
    }
}
