.hero-section,
.icon-box {
    display: flex;
    align-items: center
}

:root {
    --primary: #2a5d8a;
    --secondary: #ff6b00;
    --light: #f8f9fa;
    --dark: #212529
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    color: var(--dark) !important;
    overflow-x: hidden
}

.hero-section {
    background: linear-gradient(135deg, rgba(42, 93, 138, .9) 0, rgba(42, 93, 138, .95) 100%);
    color: #fff;
    min-height: 100vh
}

.list-check li::before,
.text-primary {
    color: var(--primary) !important
}

.divider {
    width: 80px;
    height: 4px;
    border-radius: 2px
}

.icon-box {
    width: 70px;
    height: 70px;
    justify-content: center;
    transition: .3s !important
}

.card {
    transition: .3s;
    border: none
}

.hover-top:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1) !important
}

.hover-scale:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15) !important
}

.activity-card {
    transition: .3s !important;
    border: 1px solid rgba(0, 0, 0, .05) !important
}

.activity-icon,
.step-number {
    transition: .3s
}

.activity-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1) !important;
    border-color: var(--primary) !important
}

.activity-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.list-check {
    list-style: none;
    padding-left: 0
}

.list-check li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px
}

.list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0
}

.accordion-button:not(.collapsed) {
    background-color: rgba(42, 93, 138, .05);
    color: var(--primary) !important;
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125)
}

.text-warning {
    color: #ffc107 !important
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa
}

@media (max-width:992px) {
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
        min-height: auto
    }

    .hero-image {
        margin-top: 50px
    }
}

@media (max-width:768px) {

    .display-4,
    .hero-section .display-4 {
        font-size: 2.5rem !important
    }
}