.about-container {
    display: flex;
    align-items: center;
    padding: 40px;
}

.about-left {
    flex: 1;
    text-align: center;
}

.about-left img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.about-right {
    flex: 1;
    padding-left: 20px;
}
.about-right h2{
    color: #003366;
}
.about-right p{
    color: black;
}

.values {
    text-align: center;
    padding: 40px;
    background-color: white;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    font-size: 1.2em;
    padding: 10px;
    color: #003366;
}
.values h2{
    color: #E67E22;
}
.cta {
    text-align: center;
    padding: 40px;
    background-color: #E67E22;
    color: white;
}

.cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #E67E22;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.cta-btn:hover {
    background-color: #D35400;
    color: white;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-right {
        padding-left: 0;
    }
}
