
.banner {
    width: 100%;
    height: 500px;
    background:  url('https://res.cloudinary.com/demgvmbmk/image/upload/v1745116738/imagenes/Blandon%20Bonilla%20Files/wg3g_so86j2.png') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.banner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: rgb(18, 11, 46);
    display: flex;
    justify-content: space-between;
}

/* Practice areas section */
.practice-areas {
    /* padding: 30px 0; */
    text-align: center;
    padding-bottom: 30px;
} 
/* .practice-areas h2{
    padding-top: 20px;
} */

.practice-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.practice-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.practice-image-placeholder { 
    height: 250px;
    background-color: #ffffff;
    padding: 20px 20px 0px 20px;
    overflow: hidden
}
.practice-image-placeholder img{
    width: 100%;
    border-radius: 6px 6px 0 0;
   
}

.practice-card-content {
    padding: 15px 20px 20px 20px;
}
.practice-card-content ul {
    padding-left: 20px;
}
