#types-of {
    background-color: #f9fafc;
    padding-bottom: 2rem;


    .card.ssl-card {
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
        padding: 20px;
    }

    .card.ssl-card:hover {
        transform: translateY(-5px);
    }

    .header-description {
        width: 80%;
    }

    .ssl-icon .fas {
        font-weight: 900;
        font-size: 3rem;
        color: var(--accent);
    }

    .fa-check {
        padding-right: 12px;
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--main);
        margin-bottom: 1rem;
    }

    ul.list-unstyled {
        padding: 0;
        list-style-type: none;
        margin: 0;
    }

    ul.list-unstyled li {
        padding: 16px;
        margin-bottom: 10px;
        font-size: 0.9rem;
        color: #666;
        display: flex;
        align-items: center;
        border: 1px solid rgba(0, 0, 0, .125);
        border-width: 0 0 1px;
    }

    ul.list-unstyled li i {
        color: #f57c00;
        margin-right: 10px;
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
    }

    .btn-primary {
        background-color: #f57c00;
        border-color: #f57c00;
        font-weight: 600;
    }

    .btn-primary:hover {
        background-color: #e56600;
        border-color: #e56600;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        filter: invert(1);
    }

    .bottom-space {
        padding-bottom: 23px !important;
        margin-bottom: 30px !important;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    #types-of .row {
        display: none;
    }

    #sslCarousel {
        display: block;
    }
}

@media (min-width: 992px) {
    #sslCarousel {
        display: none;
    }

    #types-of .row {
        display: flex;
    }
}
