/* Main container holding both sidebars and content */
.main-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar for images (left and right) */
.image-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 12%;
    background-color: #f9f5e7;
    overflow: hidden;
}

.image-sidebar img {
    width: 100%;
    height: 20vh;  /* Divides evenly for 5 images */
    object-fit: cover;
}

/* Main content area */
.main-content {
    flex: 1;
    padding: 30px;
    background-color: #fff7e6;
    overflow-y: auto;
}

.main-content h1 {
    text-align: center;
    color: #d35400;
    font-size: 2em;
    margin-bottom: 20px;
}

.main-content h2 {
    text-align: center;
    color: #d35400;
    font-size: 1.5em;
    margin-top: 40px;
}

.main-content p {
    text-align: justify;
    line-height: 1.8em;
    margin-bottom: 20px;
}

/* Left and right specific styling */
.image-sidebar.left {
    border-right: 1px solid #e1e1e1;
}

.image-sidebar.right {
    border-left: 1px solid #e1e1e1;
}
.logo-header {
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 10;
}

.logo {
    height: 40px; /* Adjust according to your logo size */
    margin-right: 10px;
}

.website-name {
    font-size: 22px;
    font-weight: bold;
    color: #d35400;
    text-decoration: none;
    cursor: pointer;
}

.website-name:hover {
    text-decoration: underline;
}
