/* Welcome Section */
.welcome-section {
    width: 100%;
    background-color: #0b1c2d; /* your navy blue */
    color: white;
}

.welcome-container.welcome-reverse{
    flex-direction: row-reverse;
}

.welcome-container {
    display: flex;
    padding: 0rem 2rem;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
}

.social-logo {
    height: 15rem;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.welcome-text.top {
    margin-top: 2rem;
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.welcome-image {
    flex: 1 1 300px;
    text-align: center;
}

.welcome-image img {
    border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .welcome-container {
        flex-direction: column;
    }
    .welcome-container.welcome-reverse{
        flex-direction: column;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .welcome-text p {
        font-size: 1rem;
    }
}
