/* CSS Reset & Basic Styling */


a {
    text-decoration: none;
    color: #343a40;
    transition: color 0.3s;
}

a:hover {
    color: #007bff;
}


/* #nav .img {
    margin-right: 50px;
} */



.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    margin: 0% 2%; 
    padding: 3% 4%;
    padding-left: 4rem;
    border-radius: 5px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}


h2, p {
    direction: rtl; /* Text direction set to right-to-left */
}

h2 {
    color: #007bff;
    font-size: 28px;
    font-weight: bold;
}

p {
    color: #6c757d;
    font-size: 20px;
}

/* Responsive */

.column2 p {
    text-align: left;
}