/* Color Section Styles */
#color-section {
    background-color: #eff7fa;
    padding: 50px 50px;
    padding-bottom: 50px;
    color: black;
    text-align: center;
}

#color-section .border-light {
    border-color: #e4ecef;
}

#color-section .bordered-image {
    background-color: #e4ecef;
}



#color-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.color-content {
    box-style: border-box;
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
    margin: 0 auto;
    width: 100%;
    max-width: 750px;
    justify-content: center;
}

.color-content img {
    display: block;
    padding: 0px;
}

.color-text {
    grid-column: 1 / -1;
}

.color-text p {
    padding-left: 40px;
    padding-right: 40px;
    margin: 0;
    padding-bottom: 0;
}

.color-left, .color-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.color-left {
    margin-left: 15px;
    margin-right: 15px;
}

.color-right {
    margin-right: 15px;
    margin-left: 15px;
}

.color-left img, .color-right img {
    width: 100%;
    border-radius: 8px;
    /*height: 180px;*/
}

.color-left img {
    padding: 10px;
    border: 2.5px solid #292929;
    background-color: #eae9e4;
}

.color-right img {
    padding: 10px;
    border: 3px solid #303238;
    background-color: #303238;
}

@media (max-width: 768px) {

    #color-section {
        padding: 50px 40px;
        flex-direction: column;
        text-align: left;
    }

    .color-content {
        grid-template-columns: 1fr; /* Stack items vertically */
        text-align: left;
        gap: 30px;
    }

    .color-content p {
        padding: 0;
        margin-bottom: 0;
    }

    #color-section h2 {
        font-size: 2rem;
    }

    .color-left img, .color-right img {
        max-width: 400px;
    }
}
