#wrapper {
    max-width: none !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0px !important;
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main_content {
    flex-grow: 1;
}

.custom-banner {
    width: 100%;
    text-align: center;
    background-color: #f0f0f0; /* Warna latar belakang jika gambar gagal dimuat */
}

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

.info-page-content {
    color: #333333;
    line-height: 1.7;
}

.info-page-content h1 {
    color: #0B3C5D;
    border-bottom: 3px solid #328CC1;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 2.4em;
    font-weight: 700;
}

.info-page-content h2 {
    color: #1D2731;
    margin-top: 45px;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.info-page-content a {
    color: #328CC1;
    text-decoration: none;
    font-weight: 600;
}

.info-page-content a:hover {
    text-decoration: underline;
}

.info-page-content ul {
    list-style: none;
    padding-left: 5px;
}

.info-page-content li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.info-page-content li::before {
    content: '»';
    position: absolute;
    left: 0;
    top: -2px;
    color: #328CC1;
    font-size: 1.5em;
    font-weight: bold;
}

.info-page-content strong {
    color: #0B3C5D;
}

.homepage-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #0B3C5D;
    color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.8em;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.hero-section .subtitle {
    font-size: 1.2em;
    color: #D4F1F4;
    margin-top: 10px;
}

.features-section h2 {
    text-align: center;
    font-size: 2.2em;
    color: #1D2731;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.4em;
    color: #0B3C5D;
    margin-bottom: 10px;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.stats-box, .contribute-box {
    padding: 30px;
    border-radius: 8px;
    color: #FFFFFF;
}

.stats-box {
    background-color: #328CC1;
}

.contribute-box {
    background-color: #1D2731;
}

.info-section h3 {
    font-size: 1.6em;
    margin-top: 0;
    color: #FFFFFF;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #0B3C5D;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.button:hover {
    background-color: #f0f0f0;
    color: #1D2731;
}

@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
    }
    .hero-section h1 {
        font-size: 2em;
    }
}
