body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.aheader {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.aheader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aheader-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
}
.aheader-content h1 {
    font-size: 48px;
    margin: 0;
}
.aheader-content .breadcrumb {
    font-size: 14px;
    margin-top: 10px;
    display: none; /* Hide the breadcrumb */
}
.aheader-content .breadcrumb a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}
.aheader-content .breadcrumb a:hover {
    text-decoration: underline;
}
.aheader-content .bracket {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 72px;
    font-weight: bold;
}


.containern {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.card {
    background:  linear-gradient(to right, #b3f47e, #404d7b);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.card:nth-child(even) {
    background:  linear-gradient(to right, #b5e191, #162a6c);
}
.card-content {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-content h2 {
    margin-top: 0;
    font-size: 24px;
    color: #000000;
}
.card-content p {
    font-size: 16px;
    color: #090909;
}
.card-content ul {
    list-style: none;
    padding: 0;
}
.card-content ul li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}
.card-content ul li i {
    margin-right: 10px;
    color: #ff6666;
}
.card-image {
    flex: 1;
    text-align: center;
}
.card-image img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
}
.card.reverse {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .card, .card.reverse {
        flex-direction: column;
    }
    .card-content, .card-image {
        padding: 10px;
    }
}