body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 10px 20px;
    
}
.menu-icon {
    cursor: pointer;
    font-size: 2em;
    margin-left: 40px;
}
.logo {
    text-align: center;
    flex-grow: 1;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #a00707;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.5em;
}
.dropdown-content a:hover {
    background-color: #be2929;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.content{
   background-color: white;
   background-position: center; 
   display: flex; 
   justify-content: flex-start;
   height: 10vh;
}
#page-container {
    font-family: 'Arial', serif;
    text-align: center;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    width: 60%;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 200px;
    box-shadow: 0 4px 10px rgba(231, 40, 40, 0.2);
    position: relative;
    padding: 20px;
    background: #f9f9f9;
    flex-direction: column;
}

blockquote {
    margin: 0;
    padding: 20px;
    position: relative;
    font-style: italic;
    color: #555;
    border-left: 5px solid #ccc;
}

blockquote::before {
    content: "“"; /* Opening quote symbol */
    font-size: 2em;
    position: absolute;
    left: -20px;
    top: -10px;
    color: #ccc;
}

blockquote::after {
    content: "”"; /* Closing quote symbol */
    font-size: 2em;
    position: absolute;
    right: -20px;
    bottom: -10px;
    color: #ccc;
}

.author {
    display: block;
    text-align: right;
    font-size: 12px;
    font-style: italic;
    color: #888;
    margin-top: 30px;
}
p {
    font-size: 1em;
    margin-left: 30px;
    text-align: justify;
    width: 80%;
    color: white;
    font-style: italic;
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .responsive-image {
        width: 100%;
        height: auto;
    }
}
/* Our Solutions */
.sidebar {
    width: 20%;
    background-color: #f4f4f4;
    padding: 20px;
    position: fixed;
    overflow-y: auto;
}
.sidebar a {
    margin-top: 5px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    padding: 5px;
    background-color: #ddd;
    border-radius: 5px;
}
.sidebar a:hover {
    background-color: #bbb;
}
.leftbar {
    width: 80%;
    margin-left: 20%;
    padding: 20px;
    text-align: center;
}
.leftbar p {
    text-justify: center;
    margin: 0 auto;
}
.image {
    width: 30%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
}
.footer {
    background-color: white;
    color: #5a0707;
    padding: 10px;
    text-align: center;
    bottom: 0;
    width: 100%;
}
.social-icons {
    margin: 10px 0;
}
.social-icons a {
    color: #21068c;
    margin: 0 5px;
    text-decoration: none;
    font-size: 1em;
}
.footer-text {
    margin-top: 10px;
    font-size: 1em;
}
#calendar {
    max-width: 900px;
    margin: 40px auto;
}