.custom-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #f8f9fa;
    gap: 20px;
}

.custom-card {
    position: relative;
    width: 45%;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-card img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 5px;
    width: 80%;
}

.custom-content h2 {
    margin: 0;
    font-size: 1.5em;
}

.custom-content a {
    color: rgb(190 64 64);
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.custom-promo {
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.custom-promo p {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.custom-promo h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #007bff;
}

@media (max-width: 768px) {
    .custom-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .custom-promo {
        width: 100%;
    }
}