.hero {
    /* background-image: url(/images/freepik-export-20241126055721newr.png); */
    background: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000048;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero h1,
.hero p,
.learn-more-btn {
    position: relative;
    z-index: 1;
    color:var(--color);
}

.content-section {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.services-item {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 5px solid #0d6efd;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    min-height: 355px;
}

.services-item:hover {
    background-color: #e9ecef;
}

.article {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.176);
    border-radius: 5px 5px 0px 0px;

}

.article-header {
    padding: 12px;
    border-radius: 5px 5px 0px 0px;
    background-color: var(--primary-color);
}
