.sarana-section {
    padding: 40px 20px;
}

.sarana-section h1 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.sarana-section .intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.sarana-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sarana-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e0e7ff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.sarana-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    border-color: #c7d2fe;
}

.sarana-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
    animation: bounce 2s ease-in-out infinite;
}

.sarana-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.sarana-card h3 {
    color: #1e3a8a;
    margin: 15px 0 10px 0;
    font-size: 1.2em;
}

.sarana-card p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}
