.hc-233-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background-color: #2b1f1a;
    color: #fff;
    font-family: sans-serif;
    background-size: cover;
    background-position: center;
}

.hc-233-left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.hc-233-left-content {
    margin-bottom: 40px;
}

.hc-233-heading {
    font-family: serif;
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #fff;
}

.hc-233-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hc-233-main-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e6f0c2;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.hc-233-main-btn:hover {
    opacity: 0.8;
}

.hc-233-nav {
    display: flex;
    gap: 15px;
}

.hc-233-nav-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.hc-233-nav-btn i {
    font-size: 24px;
}

.hc-233-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.hc-233-nav-btn:hover {
    opacity: 0.7;
}

.hc-233-right {
    flex: 2 1 500px;
    overflow-x: auto;
    padding-bottom: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hc-233-right::-webkit-scrollbar {
    display: none;
}

.hc-233-cards-wrapper {
    display: flex;
    gap: 20px;
}

.hc-233-card {
    flex: 0 0 320px;
    background: #f7f6f2;
    border-radius: 12px;
    padding: 24px;
    color: #333;
    display: flex;
    flex-direction: column;
}

.hc-233-card-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    color: #000;
}

.hc-233-card-img-wrap {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.hc-233-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.hc-233-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hc-233-card-btns {
    display: flex;
    gap: 8px;
    margin-top: auto;
    width: 100%;
}

.hc-233-card-btn {
    flex: 1;
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hc-233-card-btn:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .hc-233-container {
        flex-direction: column;
        padding: 20px;
    }
}