.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    max-width: 90%;
    margin: auto;
    gap: 3rem;
}

.about-content {
    flex: 1 1 450px;
    max-width: 550px;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #001f3f;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4b5563;
}

.btn {
    display: inline-block;
    background-color: orange;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #001f3f;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content,
    .about-image {
        max-width: 100%;
    }
}