/* About Reflex Section */
.about-reflex {
    display: flex;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    padding: 20px 10%; /* Padding for larger screens */
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 20px; /* Gap between logo and info */
}

.logo-wrapper {
    flex: 1;
    max-width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 100%;
    height: auto;
}

.info-wrapper {
    flex: 2;
    padding-left: 20px;
}

.info-wrapper h1 {
    margin-top: 0;
    color: #E5BC5D; /* Gold color for headings */
}

.info-wrapper p {
    margin-top: 10px;
}

/* Responsive Design for Small Screens */
@media screen and (max-width: 500px) {
    .about-reflex {
        flex-direction: column;
        text-align: center;
        padding: 20px; /* Adjust padding for small screens */
    }

    .info-wrapper {
        padding-left: 0;
        padding-top: 20px;
    }
}
