.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50vh; /* Make each panel take up the full height of the viewport */
    margin-bottom: 60px; /* Spacing between panels */
    position: relative;
    box-sizing: border-box; /* Ensure padding and borders are included in the width and height */
}

.panel-title-left, .panel-title-right {
    width: 30%;
    padding: 0;
    background-color: transparent;
    font-size: 40px; /* Title font size */
    font-weight: bold;
    color: #FFC617;
}

.panel-title-left {
    order: 1;
    text-align: left;
}

.panel-title-right {
    order: 3;
    text-align: right;
}

.panel-content-right, .panel-content-left {
    width: 600px;
    height: 300px;
    padding: 30px;
    background-color: #292933E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.panel-content-right {
    order: 2;
    margin-left: 20px; /* Space between title and content */
}

.panel-content-left {
    order: 2;
    margin-right: 20px; /* Space between title and content */
}

.about-panel:not(:last-child) .connector {
    height: 60px; /* Adjust this height to control spacing */
    bottom: -30px; /* Position connector below the current panel */
}

.about-panel + .about-panel .connector {
    height: 60px; /* Adjust this height to control spacing */
    top: -30px; /* Position connector above the next panel */
}

.about-panel:nth-child(even) .connector {
    left: calc(100% - 20% - 450px); /* Align with the right side */
    transform: translateX(-50%);
}

.about-panel:nth-child(odd) .connector {
    left: 20%; /* Align with the left side */
    transform: translateX(50%);
}

.panel-content-right, .panel-content-left {
    font-size: 20px;
    line-height: 2;
    color: #F7F7F7;
}

.connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
@media (max-width: 992px) {
    .about-panel{
        display: inline;
        width: unset;
        height: inherit;

    } 
    .panel-title-left{width: 100%; font-size: 37px;}
    .panel-title-right{width: 100%;}
    .about-container{padding: inherit;}
    .panel-content-right{width: 400px; margin-left: 0px;}
    .panel-content-left{width: 400px; margin-right: 0px;} 
    .connector-svg{display: none;}
    .pt-50{padding-top: 50px;}
    .pb-50{padding-bottom: 50px;}
}
@media (max-width: 480px) {
    .panel-content-right{width: 217px; margin-left: 0px;}
    .panel-content-left{width: 217px; margin-right: 0px;} 
}