#main-section {
    display: flex;
    min-height: 100vh;
}
#main-section .right-column {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
}
#main-section .image-carousel {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
#main-section .carousel-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
}
#main-section .carousel-track img {
    flex: 0 0 auto;
    max-height: 150px;
    width: auto;
    object-fit: cover;
    border-radius: 5px;
}
#main-section .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
}
#main-section .carousel-button.left {
    left: 10px;
}
#main-section .carousel-button.right {
    right: 10px;
}
#main-section .carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
#main-section .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid black;
}
#main-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#main-section .header-container {
    text-align: center;
    margin-top: 50px;
}
#main-section .right-column h1 {
    font-size: 6rem;
    font-weight: 300;
    margin: 0;
}
#main-section .right-column h2 {
    font-size: 1.75rem;
    font-weight: 200;
    margin: 15px 0;
}
#main-section .right-column h3 {
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 200;
}
#about-section .right-column {
    margin-left: 8rem;
    margin-right: 8rem;
    padding-top: 50px;
    padding-bottom: 50px;
}
#about-section .content-block {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
#about-section img {
    max-height: 100px;
    border: 1px solid black;
}
#contact-section .banner {
    text-align: center;
}
#contact-section .banner p {
    font-size: 28px;
}

@media (max-width: 768px) {
    #main-section .right-column h1 {
        font-size: 4rem;
    }
    #about-section .right-column {
        margin: 0;
    }
}