body {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
}

section {
    padding: 60px 0;
}

.container {
    max-width: 1080px;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #01A6FF 0.01%, #18B6FF 100%);
}

.hero p.top1 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.hero p.top2 {
    font-weight: 800;
    font-size: 68px;
    line-height: 80px;
    color: #fff;
}

.hero p.top3 {
    font-size: 18px;
    line-height: 25px;
    color: #fff;
}

.hero p.top3 b {
    font-weight: 600;
    color: #FFC546;
}

/* Banner */
.banner {
    background: #fff;
    box-shadow: 0px 4px 30px rgba(33, 118, 217, 0.15);
    border-radius: 10px;
    text-align: center;
}

/* Steps Section */
.steps {
    background-color: #FAFCFF;
}

.box {
    background: #fff;
    box-shadow: 0px 4px 30px rgba(33, 118, 217, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.box:before {
    content: '';
    display: block;
    height: 100px;
    background: red;
    border-radius: 10px 10px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
    margin: -20px -20px 20px -20px;
}

.box.step1:before {
    background-color: #61AAFF;
    background-image: none; /* Removed empty URL */
}

.box.step2:before {
    background-color: #FFAD61;
    background-image: none; /* Removed empty URL */
}

.box.step3:before {
    background-color: #FF6161; /* Changed to differentiate from step2 */
    background-image: none; /* Removed empty URL */
}

.box p {
    font-size: 16px;
    line-height: 22px;
    color: #0D145A;
}

.box ul {
    list-style-type: circle;
    padding: 0 10px 0 15px;
    min-height: 250px;
}

.box ul li {
    font-size: 14px;
    line-height: 25px;
}

.box ul li a {
    color: #378DF0;
    text-decoration: none;
}

.box ul li a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn-orange {
    background-color: #FF8A00;
    color: #fff !important;
}

.btn-orange:hover {
    background-color: #BF6700;
    color: #fff !important;
}

/* Help Section */
.bantuan .col h4 {
    color: #0D145A;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.bantuan .col p {
    color: #8689AC;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.bantuan .col p a {
    color: #378DF0;
    text-decoration: none;
}

.bantuan .col p a:hover {
    color: #555;
}

/* Navigation */
.navbar {
    background-color: #014CA0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-login {
    background-color: #f10606;
    color: #ffffff;
    font-weight: 700;
}

.btn-login:hover {
    background-color: #c70505; /* More consistent hover color */
}

/* Responsive Styles */
@media only screen and (max-width: 576px) {
    body {
        text-align: center;
    }
    
    .hero p {
        font-size: 1em !important;
        line-height: initial !important;
    }
    
    .hero p.top2 {
        font-size: 1.5em !important;
    }
    
    body ul li {
        text-align: left;
    }
    
    .hero .row {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .bantuan .col {
        margin-bottom: 20px;
    }
}