
/* styles for find out more pages */
.title-section {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(229, 190, 1, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.title-section .container {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
    text-align: center;
}

h3 {
    color: var(--primary-color)
}

.detail-features {
    list-style: none;
}

.detail-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.detail-features li:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.detail-content pre h4 {
    color: #f1da63;
}